/* Global Styles */
:root {
    --primary-color: #232f3e;
    /* AWS Dark Blue */
    --secondary-color: #007bff;
    /* Bright Blue */
    --accent-color: #ff9900;
    /* AWS Orange */
    --text-color: #333;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-aws {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 550;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0069d9;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #e68a00;
}

.btn-outline {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 85px;
    width: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1e2530 0%, #232f3e 100%);
    color: var(--white);
    padding: 50px 0;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.badge-new {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features Brief */
.features-brief {
    padding: 60px 0;
    background-color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--secondary-color);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* Toggle Switch */
.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.billing-toggle-container,
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.billing-option.active {
    color: var(--primary-color);
}

.billing-option {
    color: #999;
    transition: var(--transition);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pricing-toggle span.active {
    color: var(--primary-color);
}

.pricing-toggle span {
    color: #999;
    transition: var(--transition);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: none;
    /* Hidden by default */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    /* Sombra azul por defecto (Mensual) - Más oscura/notoria */
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.45);
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* Sombra gris clÃ¡sica cuando estÃ¡ en modo Anual - MÃ¡s oscura/notoria */
body.annual-mode .plan-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.plan-card.enterprise {
    border-top-color: var(--primary-color);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-top-color: #0b5ed7;
}

.plan-card.popular:hover {
    transform: translateY(-10px);
}

.plan-card a {
    margin-top: auto;
}

.plan-card.selected-card {
    background: #fdf5d6 !important; /* Amarillo/crema clarito proporcionado */
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.15); /* Sombra mÃ¡s cÃ¡lida */
}

.plan-card.selected-card .plan-header {
    border-bottom: 1px solid #ccc;
}

.plan-card.popular {
    border: 2px solid var(--secondary-color);
    transform: none;
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: -55px;
    width: 200px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 0;
    transform: rotate(45deg);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price .period {
    color: #777;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.plan-card.enterprise .plan-features li i {
    color: var(--primary-color);
}

.plan-features li strong {
    color: var(--text-color);
    margin: 0 5px;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
}

.why-us-section .row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-us-section .col-half {
    flex: 1;
}

.why-us-section img {
    max-width: 100%;
    border-radius: 10px;
}

.feature-item {
    display: flex;
    margin-top: 15px;
}

.feature-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #eefecf;
    color: #4CAF50;
    /* Green for checkmarks/features */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}

.feature-item .text h4 {
    margin-bottom: 5px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background-color: #1a232f;
    color: #aaa;
    padding: 50px 0 20px;
    line-height: 1.4;
}

.footer-logo-trust {
    margin-bottom: 25px;
}

.footer-brand-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.footer-brand-img:hover {
    transform: translateY(-5px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 15px;
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

/* Contact Page */
.contact-row {
    display: flex;
    gap: 50px;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-info-box {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.contact-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-15 {
    margin-top: 15px;
}

/* Support Page */
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item-list {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.feature-item-list i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.phone-highlight {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid #c3e6cb;
    margin: 0 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    transition: var(--transition);
}

.phone-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.phone-highlight i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.highlight-box {
    background-color: #eefecf;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.highlight-box h3 {
    color: #155724;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--accent-color);
}

.cta-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
}

/* Terms Page */
.terms-container {
    max-width: 900px;
}

.terms-block {
    margin-bottom: 30px;
}

.terms-block h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown trigger label (cursor: default for non-link parents) */
.nav-dropdown-label {
    cursor: default;
}

/* Dropdown chevron icon */
.nav-chevron {
    font-size: 0.65em;
    margin-left: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

/* Billing toggle annual label */
.billing-annual-label {
    color: #e83e8c;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-section .row {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .mobile-menu-toggle {
        display: none;
        /* In a real scenario, implement a hamburger menu */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
    }

    .main-nav.active > ul {
        flex-direction: column;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        min-width: auto;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        padding-top: 30px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .grid-3,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        flex-direction: column;
    }

    .features-list,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/ *   M e d a l l a   * / 
 
 
 
 . c o n t a i n e r _ m e d a l l a   { 
 
     d i s p l a y :   f l e x ; 
 
     w i d t h :   1 8 0 p x ; 
 
     h e i g h t :   1 8 0 p x ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 1 3 9 ,   3 6 ,   1 1 6 , 1 ) ; 
 
     f o n t - f a m i l y :   ' A l f a   S l a b   O n e ' ,   c u r s i v e ; 
 
     p o s i t i o n :   r e l a t i v e ; 
 
 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
 
 
 
 
     
 
     
 
 } 
 
 
 
 # c i r c l e   { 
 
     w i d t h :   9 0 % ; 
 
     h e i g h t :   9 0 % ; 
 
     s h a p e - o u t s i d e :   c i r c l e ( ) ; 
 
     c l i p - p a t h :   c i r c l e ( ) ; 
 
     b a c k g r o u n d - i m a g e :   l i n e a r - g r a d i e n t ( 3 2 0 d e g ,   r g b ( 2 3 8 ,   2 2 8 ,   1 3 7 )   6 0 % ,   w h i t e ) ; 
 
     / * b a c k g r o u n d :   r g b ( 2 2 9 ,   2 3 6 ,   1 2 6 ) ; * / 
 
     p o s i t i o n : a b s o l u t e ; 
 
             t o p :   5 0 % ; 
 
             l e f t :   5 0 % ; 
 
             h e i g h t :   9 0 % ; 
 
             w i d t h :   9 0 % ; 
 
             m a r g i n :   - 4 5 %   0   0   - 4 5 % ;       
 
     
 
     b o r d e r - r a d i u s :   5 0 % ;                                   / *   A q u Ã ­   s e   e s p e c i f i c a   e l   b o r d e   e x t e r n o   d e l   c i r c u l o * / 
 
     b o r d e r : 3 p x   s o l i d   r g b ( 2 4 1 ,   1 9 9 ,   5 8 ) ;                     / *   A q u Ã ­   s e   e s p e c i f i c a   e l   g r o s o r   d e l   b o r d e   t i p o   y   c o l o r * / 
 
     
 
 } 
 
 
 
 # c i r c l e 2   { 
 
     w i d t h :   8 0 % ; 
 
     h e i g h t :   8 0 % ; 
 
     s h a p e - o u t s i d e :   c i r c l e ( ) ; 
 
     c l i p - p a t h :   c i r c l e ( ) ; 
 
     b a c k g r o u n d - i m a g e :   l i n e a r - g r a d i e n t ( 3 2 0 d e g ,   r g b ( 2 4 0 ,   1 9 9 ,   1 6 )   6 0 % ,   w h i t e ) ; 
 
     / * b a c k g r o u n d :   r g b ( 2 4 0 ,   1 9 9 ,   1 6 ) ; * / 
 
     p o s i t i o n : a b s o l u t e ; 
 
             t o p :   4 9 % ; 
 
             l e f t :   4 9 % ; 
 
             h e i g h t :   8 0 % ; 
 
             w i d t h :   8 0 % ; 
 
             m a r g i n :   - 4 0 %   0   0   - 4 0 % ;       
 
             
 
     b o r d e r - r a d i u s :   5 0 % ;                                   / *   A q u Ã ­   s e   e s p e c i f i c a   e l   b o r d e   e x t e r n o   d e l   c i r c u l o * / 
 
     b o r d e r :   5 p x   s o l i d   # 8 b 2 4 7 4 ;                     / *   A q u Ã ­   s e   e s p e c i f i c a   e l   g r o s o r   d e l   b o r d e   t i p o   y   c o l o r * / 
 
 } 
 
 
 
 # c i r c l e 3   { 
 
     w i d t h :   7 0 % ; 
 
     h e i g h t :   7 0 % ; 
 
     s h a p e - o u t s i d e :   c i r c l e ( ) ; 
 
     c l i p - p a t h :   c i r c l e ( ) ; 
 
     / * b a c k g r o u n d - i m a g e :   l i n e a r - g r a d i e n t ( 3 2 0 d e g ,   r g b ( 2 4 0 ,   2 2 7 ,   1 1 6 )   6 0 % ,   w h i t e ) ; * / 
 
     / * b a c k g r o u n d :   r g b ( 2 4 0 ,   2 2 7 ,   1 1 6 ) ; * / 
 
     p o s i t i o n : a b s o l u t e ; 
 
             t o p :   5 0 % ; 
 
             l e f t :   5 0 % ; 
 
             h e i g h t :   7 2 % ; 
 
             w i d t h :   7 2 % ; 
 
             m a r g i n :   - 3 6 %   0   0   - 3 6 % ;       
 
             b o r d e r - r a d i u s :   5 0 % ;                                   / *   A q u Ã ­   s e   e s p e c i f i c a   e l   b o r d e   e x t e r n o   d e l   c i r c u l o * / 
 
             b o r d e r : 3 p x   s o l i d   r g b ( 2 5 5 , 2 5 1 , 0 ) ;         / *   A q u Ã ­   s e   e s p e c i f i c a   e l   g r o s o r   d e l   b o r d e   t i p o   y   c o l o r * / 
 
             
 
 } 
 
 
 
 # c i r c l e 4   { 
 
     d i s p l a y :   f l e x ; 
 
     w i d t h :   7 0 % ; 
 
     h e i g h t :   7 0 % ; 
 
     s h a p e - o u t s i d e :   c i r c l e ( ) ; 
 
     c l i p - p a t h :   c i r c l e ( ) ; 
 
     b a c k g r o u n d - i m a g e :   l i n e a r - g r a d i e n t ( 3 2 0 d e g ,   r g b ( 2 4 1 ,   2 0 1 ,   9 1 )   4 5 % ,   w h i t e ) ; 
 
     / * b a c k g r o u n d :   r g b ( 2 4 1 ,   2 0 1 ,   9 1 ) ; * / 
 
     p o s i t i o n : a b s o l u t e ; 
 
             t o p :   5 0 % ; 
 
             l e f t :   5 0 % ; 
 
             h e i g h t :   6 0 % ; 
 
             w i d t h :   6 0 % ; 
 
             m a r g i n :   - 3 0 %   0   0   - 3 0 % ;       
 
     b o r d e r - r a d i u s :   5 0 % ;                                   / *   A q u Ã ­   s e   e s p e c i f i c a   e l   b o r d e   e x t e r n o   d e l   c i r c u l o * / 
 
     b o r d e r :   2 p x   s o l i d   r g b ( 1 4 7 ,   7 7 ,   5 ,   0 . 3 ) ;                     / *   A q u Ã ­   s e   e s p e c i f i c a   e l   g r o s o r   d e l   b o r d e   t i p o   y   c o l o r * / 
 
     
 
     
 
 } 
 
 
 
 
 
 . b o x 1 - m e d a l l a   { 
 
     d i s p l a y :   f l e x ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     w i d t h :   2 5 0 p x ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 1 3 9 ,   3 6 ,   1 1 6 , 1 )   ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     b o r d e r :   2 p x   s o l i d   # c c c ; 
 
     b o r d e r - r a d i u s :   2 0 p x ; 
 
     p a d d i n g :   1 0 p x ; 
 
     m a r g i n :   1 0 p x ; 
 
     b o x - s i z i n g :   b o r d e r - b o x ; 
 
     f o n t - s i z e :   2 . 5 r e m ; 
 
     f o n t - f a m i l y :   ' B u n g e e + S p i c e ' ; 
 
     b o x - s h a d o w :   2 p x   2 p x   2 p x   1 p x   r g b a ( 1 3 9 ,   3 6 ,   1 1 6 ,   1 ) ; 
 
 } 
 
 
 
 . c o n t a i n e r _ m e d a l l a : h o v e r { 
 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 
 
 
     b a c k g r o u n d :   r g b a ( 1 3 9 ,   3 6 ,   1 1 6 ,   1 ) ; 
 
     z - i n d e x :   1 ; 
 
     t r a n s i t i o n :   8 0 0 m s ; 
 
 } 
 
 
 
 . b o x 2 - m e d a l l a   { 
 
     d i s p l a y :   f l e x ; 
 
     h e i g h t :   4 0 p x ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 1 3 9 ,   3 6 ,   1 1 6 , 1 )   ; 
 
     b o r d e r :   0 p x   s o l i d   # c c c ; 
 
     b o r d e r - r a d i u s :   1 0 p x ; 
 
     p a d d i n g :   0 p x ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     m a r g i n :   1 0 p x   0 p x   0 p x   0 p x ; 
 
   
 
     
 
 } 
 
 
 
 
 
 . t i t u l o - a n o s { 
 
     f o n t - s i z e :   3 r e m ; 
 
     f o n t - s t y l e :   i t a l i c ; 
 
     f o n t - f a m i l y : A r i a l ,   H e l v e t i c a ,   s a n s - s e r i f ; 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   1 ) ; 
 
     a n i m a t i o n :   v e l o c i d a d   0 . 8 s   1 ; 
 
     m a r g i n :   0 p x ; 
 
     p a d d i n g :   0 p x ; 
 
     f o n t - w e i g h t :   b o l d ; 
 
 } 
 
 
 
 
 
 . t e x t o - b o r d e   { 
 
     - w e b k i t - t e x t - s t r o k e :   3 p x   # 8 b 2 4 7 4 ; 
 
     c o l o r :   g o l d e n r o d ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     f o n t - s i z e :   4 . 5 r e m ; 
 
 } 
 
 
 
 . a c h u r a d o   { 
 
     w i d t h :   1 0 0 v w ; 
 
     h e i g h t :   1 0 0 v h ; 
 
     b a c k g r o u n d - i m a g e : 
 
         r e p e a t i n g - l i n e a r - g r a d i e n t ( 
 
             3 2 0 d e g , 
 
             t r a n s p a r e n t   1 p x   5 p x , 
 
               g o l d   1 0 p x   2 0 p x 
 
         ) ; 
 
 } 
 
 
 
 / *     F I N   M E D A L L A   * / 
 
 
input:checked+.slider.vibrant-ddr5 { background-color: #fbbf24 !important; }
input:checked+.slider.vibrant-ddr3 { background-color: #0ea5e9 !important; }
