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

:root {
    --primary-green: #2d5a27;
    --secondary-green: #89a481;
    --accent-green: #d1e2cf;
    --text-dark: #1a2e1a;
    --text-light: #5c705c;
    --bg-light: #f9fbf9;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 100px 5%;
}

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

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 45px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1010; /* Encima de la navegacion movil */
    position: relative;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

/* Hamburguesa animada a X */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(248, 250, 248, 0.9), rgba(248, 250, 248, 0.4));
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Sections Common --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-green);
}

.value-item i {
    color: var(--secondary-green);
}

/* --- Phone Mockup CV --- */
.about-cv-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    height: 580px;
    background: #0f1a10; /* Chasis oscuro premium */
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 
                0 0 0 4px #223c20; /* Borde del teléfono */
    position: relative;
    box-sizing: border-box;
}

/* Altavoz/Notch superior */
.phone-speaker {
    width: 60px;
    height: 4px;
    background: #2a2a2a;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Indicador de inicio inferior */
.phone-home-indicator {
    width: 100px;
    height: 4px;
    background: rgba(26, 46, 26, 0.15);
    border-radius: 2px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Pantalla del teléfono */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #fdfdfd;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Barra superior del sistema */
.phone-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 18px 2px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.6;
}

.phone-signals {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-signals svg {
    opacity: 0.8;
}

/* Cabecera del perfil */
.phone-header {
    background: linear-gradient(135deg, var(--accent-green) 0%, rgba(209, 226, 207, 0.4) 100%);
    padding: 15px 15px 18px;
    text-align: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.phone-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.profile-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.2);
}

.phone-profile h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.phone-profile p {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
}

.col-num {
    font-size: 0.65rem;
    background: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(45, 90, 39, 0.1);
    color: var(--primary-green);
    font-weight: 600;
}

/* Cuerpo con Scroll */
.phone-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-body::-webkit-scrollbar {
    width: 3px;
}

.phone-body::-webkit-scrollbar-thumb {
    background: rgba(45, 90, 39, 0.15);
    border-radius: 2px;
}

/* Pestañas */
.phone-tabs {
    display: flex;
    background: #f0f4ef;
    border-radius: 10px;
    padding: 3px;
}

.phone-tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 6px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.phone-tab-btn.active {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.phone-tab-content {
    flex: 1;
}

.cv-tab-panel {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.cv-tab-panel.active {
    display: flex;
    animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Línea de tiempo */
.cv-item {
    border-left: 2px solid var(--accent-green);
    padding-left: 12px;
    position: relative;
}

.cv-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: 5px;
}

.cv-year {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 2px;
}

.cv-item h5 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.cv-item p {
    font-size: 0.68rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 250px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.service-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Methodology Section --- */
.methodology {
    background: var(--accent-green);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.method-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.method-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* --- FAQ Section --- */
.faq {
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 90, 39, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(45, 90, 39, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:focus {
    outline: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-green);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    line-height: 1;
    display: inline-block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 22px;
    margin: 0;
}

/* Active state */
.faq-item.active {
    border-color: rgba(45, 90, 39, 0.15);
    background: var(--white);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-answer p {
        padding-bottom: 18px;
        font-size: 0.9rem;
    }
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.info-details {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-booking-box,
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.booking-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(45, 90, 39, 0.08);
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.booking-tab-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.booking-tab-btn:hover {
    color: var(--primary-green);
    background: rgba(45, 90, 39, 0.03);
}

.booking-tab-btn.active {
    color: var(--primary-green);
    background: rgba(45, 90, 39, 0.06);
}

.booking-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px 3px 0 0;
}

.booking-panel {
    display: none;
}

.booking-panel.active {
    display: block;
    animation: fadeInTab 0.4s ease;
}

/* Doctoralia and Mundopsicologos widgets layout */
#booking-widget-panel {
    width: 100%;
}

.booking-widgets-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 25px;
    align-items: start;
}

.widget-container {
    width: 100%;
}

.mundopsicologos-widget {
    background: #fcfdfe;
    border: 1px solid rgba(45, 90, 39, 0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mundopsicologos-widget .portal-by {
    text-align: center;
    margin-top: 10px;
}

/* Trust Badges Footer */
.booking-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(45, 90, 39, 0.08);
}

.footer-badge-link {
    text-decoration: none;
    transition: var(--transition);
}

.footer-badge-link:hover {
    transform: translateY(-2px);
}

.footer-badge-link:hover span {
    color: var(--primary-green);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.footer-badge strong {
    color: var(--text-dark);
}

.footer-badge-divider {
    width: 1px;
    height: 16px;
    background: rgba(45, 90, 39, 0.15);
}

.brand-svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .booking-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-badge-divider {
        display: none;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

.contact-map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
    border: 1px solid rgba(45, 90, 39, 0.1);
    transition: var(--transition);
}

.contact-map:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}


/* --- WhatsApp Floating --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Centrar el mockup cuando pasa a columna única */
    .about-cv-wrapper {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 300px;
        height: 540px;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden; /* Evitar scroll de fondo al abrir menu */
    }

    .nav-links {
        display: flex !important; /* Forzar flex pero fuera de pantalla */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; /* Oculto a la derecha */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 100px 30px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        gap: 25px;
    }

    .nav-links.active {
        right: 0; /* Desplegado */
    }

    .nav-links a {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-light);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(45, 90, 39, 0.08);
    }

    .nav-links a:hover {
        color: var(--primary-green);
        padding-left: 8px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero::before {
        background: rgba(248, 250, 248, 0.9); /* Mas opaco en movil para legibilidad */
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-grid div:first-child {
        margin-bottom: 10px;
    }

    /* Phone mockup en móvil */
    .phone-mockup {
        max-width: 270px;
        height: 500px;
    }

    .phone-profile h4 {
        font-size: 0.9rem;
    }

    .phone-profile p {
        font-size: 0.68rem;
    }

    .cv-item h5 {
        font-size: 0.74rem;
    }

    .cv-item p {
        font-size: 0.64rem;
    }
}

@media (max-width: 480px) {
    .values-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-booking-box,
    .contact-form {
        padding: 30px 20px;
    }

    section {
        padding: 60px 5%;
    }

    /* Phone mockup en pantallas muy pequeñas */
    .phone-mockup {
        max-width: 240px;
        height: 460px;
        border-radius: 34px;
        padding: 10px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .phone-header {
        padding: 12px 12px 14px;
    }

    .profile-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .phone-body {
        padding: 12px;
        gap: 12px;
    }

    .phone-tab-btn {
        font-size: 0.68rem;
        padding: 5px 3px;
    }

    .cv-item h5 {
        font-size: 0.7rem;
    }

    .cv-item p {
        font-size: 0.6rem;
    }
}

/* --- Cookie Banner (Premium Floating Card) --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none; /* Controlado por JS */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    color: var(--primary-green);
    flex-shrink: 0;
    animation: cookie-pulse 2s infinite ease-in-out;
}

.cookie-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.cookie-container p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-container a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-primary {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    flex: 1.2;
    transition: var(--transition);
}

.btn-cookie-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(45, 90, 39, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    flex: 0.8;
    transition: var(--transition);
}

.btn-cookie-secondary:hover {
    background: rgba(45, 90, 39, 0.05);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

@keyframes cookie-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
        padding: 20px;
        border-radius: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-cookie-primary,
    .btn-cookie-secondary {
        width: 100%;
        padding: 10px;
    }
}