:root {
    /* Color Palette - Directel Brand */
    --primary-orange: #F58220;
    --primary-gradient: linear-gradient(135deg, #F58220 0%, #FF9D4D 100%);
    --hover-orange: #e07210;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --border-color: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 130, 32, 0.3);
}

.btn-block {
    width: 100%;
}

/* ==================== HEADER ==================== */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.header-logo .logo {
    height: 50px;
    width: auto;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
    line-height: 1.3;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--primary-orange);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange) !important;
    font-weight: 700 !important;
}

.endesa-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.endesa-badge:not(:has(img)) {
    background: #E8F5E9;
    color: #2E7D32;
}

.endesa-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.endesa-logo-footer {
    margin-top: 1.5rem;
}

.endesa-logo-footer .endesa-logo-img {
    height: 70px;
    filter: none;
    opacity: 1;
}

/* Trust Bar */
.trust-bar {
    background: var(--text-dark);
    padding: 0.6rem 0;
}

.trust-bar-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-bar-item svg {
    stroke: var(--primary-orange);
}

/* ==================== HERO ==================== */
.hero {
    padding: 80px 0 120px;
    background: radial-gradient(circle at top right, rgba(245, 130, 32, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.02), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 550px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    display: block;
}

/* ==================== FORMS ==================== */
.hero-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.form-centered {
    max-width: 480px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-orange);
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-check a {
    color: var(--primary-orange);
}

.form-microcopy {
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Form Trust Reinforcement */
.form-trust {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-trust-item svg {
    stroke: var(--accent-green);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: var(--text-dark);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.about-image-badge svg {
    stroke: var(--primary-orange);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
    padding: var(--section-padding);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.comparison-others {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.comparison-us {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-others .comparison-header svg {
    stroke: var(--accent-red);
}

.comparison-us .comparison-header svg {
    stroke: var(--accent-green);
}

.comparison-card h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.comparison-card li:last-child {
    border-bottom: none;
}

/* ==================== FEATURES ==================== */
section {
    padding: var(--section-padding);
}

.white-section {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== STEPS ==================== */
.steps-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--border-color));
}

.step-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    background: var(--primary-gradient);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.2);
}

.step-content {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    background: var(--text-dark);
    color: white;
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-section h2,
.trust-section p {
    color: white;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    filter: blur(150px);
    opacity: 0.15;
}

/* ==================== FAQ ==================== */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.faq-open {
    border-color: var(--primary-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.faq-open .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-muted);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 12px;
}

.faq-icon::after {
    width: 12px;
    height: 2px;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.faq-open .faq-icon::before,
.faq-item.faq-open .faq-icon::after {
    background-color: var(--primary-orange);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--text-dark);
    color: white;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-endesa {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-contact ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-contact li,
.footer-legal li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--primary-orange);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    stroke: var(--primary-orange);
}

.footer-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==================== FLOATING CTA ==================== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 99px;
    display: none;
    /* Hidden by default, shown via JS */
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    z-index: 2000;
    transition: all 0.3s ease;
}

.floating-cta.visible {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .subtitle {
        margin: 0 auto 2.5rem;
    }

    .trust-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .form-trust {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-featuers {
        /* typo in css but keeping for consistency or separate? */
        justify-content: center;
    }

    .about-feature {
        justify-content: center;
    }

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

@media (max-width: 768px) {

    .header-content {
        padding: 0.8rem 0;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .header-nav {
        gap: 0.5rem;
    }

    /* Mostrar teléfono móvil como icono */
    .header-nav a:not(.header-phone) {
        display: none;
    }

    .header-phone {
        font-size: 0 !important;
        /* Ocultar texto */
        width: 36px;
        height: 36px;
        background: rgba(245, 130, 32, 0.1);
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

    .header-phone svg {
        width: 20px;
        height: 20px;
        color: var(--primary-orange);
    }

    .endesa-badge {
        display: flex !important;
        padding: 0.25rem 0.5rem;
        background: rgba(46, 125, 50, 0.05);
        border: 1px solid rgba(46, 125, 50, 0.1);
    }

    .endesa-logo-img {
        height: 28px;
        /* Reducir altura para encajar */
    }

    .logo {
        height: 28px;
        /* Alinear con Endesa */
    }

    .logo-tagline {
        display: none;
    }

    .features-grid,
    .testimonials-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 3rem;
    }

    .trust-bar-content {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero {
        padding: 40px 0 80px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-form-container {
        padding: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .steps-container::before {
        left: 50%;
        margin-left: -1px;
    }
}

/* ==================== COOKIE BANNER (RGPD) ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.cookie-text a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cookie-btn-primary {
    background: var(--primary-orange);
    color: #fff;
}

.cookie-btn-primary:hover {
    background: var(--hover-orange);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 0 16px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }
}


/* ==================== HONEYPOT (Anti-spam, invisible) ==================== */
.form-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}


/* ==================== RADIO BUTTONS para preguntas filtro ==================== */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.radio-group-inline {
    flex-direction: row;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-white);
    font-size: 0.9rem;
}

.radio-option:hover {
    border-color: var(--primary-orange);
    background: #FFF7ED;
}

.radio-option input[type="radio"] {
    accent-color: var(--primary-orange);
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-label {
    color: var(--text-dark);
    font-weight: 500;
}

.radio-option:has(input:checked) {
    border-color: var(--primary-orange);
    background: #FFF7ED;
    box-shadow: 0 0 0 1px var(--primary-orange);
}

.radio-label {
    color: var(--text-muted);
    line-height: 1.3;
}

.form-group > label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .radio-group-inline {
        flex-direction: column;
    }

    .radio-option {
        padding: 12px 14px;
    }
}


/* ==================== LABEL OPTIONAL ==================== */
.label-optional {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
}
