@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #0f172a;
    --secondary: #334155;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --background: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent any section from bleeding outside viewport */
section, nav, footer {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
    height: 100vh;
}

h1,
h2,
h3,
.brand {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand span {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.btn-email:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Problem Section */
.problem {
    padding: 120px 0;
    background: #020617;
    /* Slate 950 - Máximo contraste */
    color: var(--white);
    position: relative;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.problem .section-tag {
    color: #60a5fa;
    border-color: #60a5fa;
}

.problem h2 {
    color: var(--white);
    margin-bottom: 5rem;
    font-size: 3rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: #1e293b;
    /* Slate 800 - Fondo sólido para mejor lectura */
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.card:hover {
    background: #0f172a;
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.card h3 {
    color: var(--white);
    /* Título blanco para máximo contraste */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.card p {
    color: #cbd5e1;
    /* Gris claro, muy legible sobre oscuro */
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 1;
}

/* Classes Section */
.classes {
    padding: 160px 0;
    background: #ffffff;
}

.classes h2 {
    text-align: center;
    margin-bottom: 6rem;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--primary);
}

.class-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.class-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.class-item:nth-child(even) {
    flex-direction: row-reverse;
}

.class-info {
    flex: 1;
}

.class-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.class-info h3 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.class-info p {
    font-size: 1.25rem;
    color: var(--secondary);
    line-height: 1.8;
}

.class-info p b {
    color: var(--accent);
    font-weight: 700;
}

.class-visual {
    flex: 1;
    position: relative;
    z-index: 1;
}

.class-visual::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    top: 30px;
    right: -30px;
    border-radius: 32px;
    z-index: -1;
    opacity: 0.05;
}

.class-item:nth-child(even) .class-visual::after {
    left: -30px;
    right: auto;
}

.class-visual img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.2);
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.class-item:hover .class-visual img {
    transform: translateY(-10px) scale(1.02);
}


/* Calculator Section */
.calculator {
    padding: 100px 0;
    background: #f8fafc;
}

.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calc-inputs {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.calc-results {
    position: relative;
    /* Removed sticky to prevent 'moving' complaint */
}

.result-card {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
}

.result-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.result-amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2.5rem;
    color: #60a5fa;
    letter-spacing: -0.05em;
}

.sub-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

.input-group {
    margin-bottom: 2.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: -0.025em;
}

.input-group input {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.task-list {
    margin-top: 3rem;
}

.task-list p#task-list-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f1f5f9;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.task-item:hover {
    background: #e2e8f0;
}

.task-item label {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
    padding-right: 1rem;
}

.task-item input {
    width: 90px;
    padding: 0.75rem;
    text-align: center;
    border-radius: 10px;
    border: 2px solid transparent;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    text-align: center;
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 60px -15px rgba(15, 23, 42, 0.1);
    border-color: var(--accent);
}

.pricing-card::before {
    content: "OFERTA ESPECIAL MARZO";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.price-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.price-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.price-value {
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}

.offer-label {
    font-size: 1.5rem !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
    margin-top: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    display: grid;
    gap: 1.25rem;
}

.pricing-features li {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.pricing-features li:hover {
    background: #f1f5f9;
}

.pricing-features li i {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}


/* Footer Section */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-inline: auto;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
        width: 100%;
        max-width: 100vw;
    }

    nav {
        height: 65px;
    }

    .brand {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 40px 0 60px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem;
        font-size: 1rem;
        min-width: 0 !important;
    }

    /* Problem */
    .problem {
        padding: 60px 0;
    }

    /* Cards */
    .problem h2 {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
    }

    /* Sessions */
    .classes {
        padding: 60px 0;
    }

    .classes h2 {
        font-size: 2.1rem;
        margin-bottom: 2.5rem;
    }

    .class-grid {
        gap: 50px;
    }

    .class-item,
    .class-item:nth-child(even) {
        flex-direction: column;
        gap: 2.5rem;
        text-align: left;
    }

    .class-info h3 {
        font-size: 1.85rem;
    }

    .class-info p {
        font-size: 1.05rem;
    }

    .class-visual::after {
        display: none;
    }

    .class-visual img {
        border-radius: 24px;
    }

    /* Calculator */
    .calc-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calc-inputs {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .result-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .result-amount {
        font-size: 2.75rem;
    }

    .sub-results {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .task-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .task-item label {
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .task-item input {
        width: 100% !important;
    }

    /* Pricing */
    .pricing {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 2.5rem 1.25rem;
        border-radius: 30px;
    }

    .price-value {
        font-size: 3.25rem;
    }

    .pricing-features li {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 2.1rem;
    }

    .final-cta p {
        font-size: 1.2rem;
    }

    /* Modal & Calendar */
    .modal-content {
        padding: 1.5rem 1rem;
        width: 92%;
        margin: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .calendar-grid {
        font-size: 0.75rem;
        gap: 2px;
    }

    .calendar-days li {
        padding: 0.4rem 0;
    }

    .hour-slots-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Nav links */
    .nav-links {
        display: none;
    }

    .nav-container {
        gap: 0;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
        overflow: hidden;
    }

    .testimonials h2 {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }

    .testimonials-grid {
        gap: 1.25rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 100%;
    overflow-y: auto;
    margin: auto;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Calendar */
.calendar-wrapper {
    margin-top: 2rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-header h4 {
    font-size: 1.25rem;
}

.calendar-nav span {
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    user-select: none;
}

.calendar-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.days-header li {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.calendar-days li {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-radius: 8px;
    cursor: default;
    color: var(--text-muted);
}

.calendar-days li.available {
    cursor: pointer;
    background: #e0f2fe;
    color: var(--accent);
    font-weight: 600;
}

.calendar-days li.available:hover {
    background: var(--accent);
    color: var(--white);
}

.calendar-days li.selected {
    background: var(--primary);
    color: var(--white);
}


.calendar-days li.inactive {
    opacity: 0.2;
}

.calendar-days li.active {
    border: 2px solid var(--accent);
}

/* Mercado Pago Payment Button */
.btn-mercadopago {
    background: #009ee3;
    color: white !important;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 158, 227, 0.4);
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-mercadopago:hover {
    background: #0087c1;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 158, 227, 0.5);
}

/* Navigation Links */
.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 8rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Pricing Feature Text with Description */
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.feature-text b {
    color: var(--text);
    font-weight: 600;
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
}

.about-avatar {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.35);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--accent);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.author-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Header Contact Buttons */
.header-contact {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 1001;
}

.contact-mini-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(15, 23, 42, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.contact-mini-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-mini-btn.whatsapp:hover {
    color: #25D366;
    background: #f0fdf4;
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-mini-btn.email:hover {
    color: var(--accent);
    background: #eff6ff;
    border-color: rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .header-contact {
        right: 1rem;
        gap: 0.5rem;
    }

    .contact-mini-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
}