/* ================================
   DINAMI AI - MAIN STYLESHEET
   ================================ */

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

/* Base Body */
body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

h1 {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFFFFF, #FFD700, #FFA500);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    letter-spacing: 2px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

h2 {
    position: relative;
    display: inline-block;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    border-radius: 2px;
    animation: underlineGrow 2s ease infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.gold-text {
    color: #FFD700;
    font-weight: 700;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes underlineGrow {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
}

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

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6))
                drop-shadow(0 0 20px rgba(255, 165, 0, 0.3))
                brightness(1.2) saturate(1.3)
                hue-rotate(0deg);
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 35px rgba(255, 165, 0, 0.6))
                brightness(1.4) saturate(1.6)
                hue-rotate(5deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 3px 3px 12px rgba(0,0,0,0.4);
    }
}

@keyframes tagAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
                    0 0 40px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                    0 0 60px rgba(212, 175, 55, 0.6);
    }
}

/* ================================
   LAYOUT
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #FFD700;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #FFA500;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-block;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-image-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 0;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFFFFF, #FFA500, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 10s ease-in-out infinite;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(100, 100, 100, 0.8);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    padding: 80px 0;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFFFFF, #FFD700, #FFA500);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.2);
    letter-spacing: 2px;
    font-weight: bold;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease backwards, gradientShift 10s ease-in-out infinite;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

.hero-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 300% 300%;
    border: 2px solid #FFD700;
    border-radius: 30px;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700, #FFA500);
    background-size: 300% 300%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Boton secundario del hero (outline) */
.hero-cta-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    animation: none;
}

.hero-cta-secondary:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.about h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #FFD700;
    position: relative;
    padding-bottom: 20px;
    animation: titleFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    text-align: center;
}

.about h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.about-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #FFD700;
    transition: border-color 0.3s ease;
}

.about-image img:hover {
    border-color: #FFA500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    text-align: left;
}

.about-item {
    padding: 15px 20px;
    background: #121212;
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #e0e0e0;
}

.about-item strong {
    font-weight: 700;
    color: #FFA500;
}

/* Nuevo diseno - Fundador */
.about-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
    margin-bottom: 25px;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.founder-info {
    margin-bottom: 35px;
}

.founder-name {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-title {
    font-size: 16px;
    color: #b0b0b0;
    font-style: italic;
}

.founder-text {
    text-align: left;
    max-width: 700px;
}

.founder-text p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: #121212;
    border-left: 3px solid #FFD700;
    border-radius: 0 8px 8px 0;
}

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

@media (max-width: 768px) {
    .founder-photo {
        width: 180px;
        height: 180px;
    }

    .founder-name {
        font-size: 24px;
    }

    .founder-text p {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* ================================
   EXPECTATIVAS SECTION
   ================================ */
.expectativas {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.expectativas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.expectativas h2 {
    font-size: 38px;
    text-align: center;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.expectativas-subtitulo {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 50px;
}

.expectativas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.expectativas-columna {
    background: #121212;
    border-radius: 8px;
    padding: 30px;
    border: 2px solid #FFD700;
}

.expectativas-columna h3 {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid;
}

.expectativas-si {
    border-color: #FFD700;
    border-top: 3px solid #FFD700;
}

.expectativas-si h3 {
    color: #FFD700;
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

.expectativas-no {
    border-color: #666;
    border-top: 3px solid #666;
}

.expectativas-no h3 {
    color: #999;
    border-bottom-color: rgba(150, 150, 150, 0.3);
}

.expectativas-columna ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expectativas-columna li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expectativas-columna li:last-child {
    border-bottom: none;
}

.expectativas-si li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 18px;
}

.expectativas-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
    font-size: 18px;
}

.expectativas-destacado {
    max-width: 800px;
    margin: 0 auto;
    background: #121212;
    border: 2px solid #FFD700;
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    padding: 25px 30px;
}

.expectativas-destacado p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .expectativas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expectativas h2 {
        font-size: 28px;
    }

    .expectativas-columna {
        padding: 25px 20px;
    }

    .expectativas-destacado {
        padding: 20px;
    }

    .expectativas-destacado p {
        font-size: 16px;
    }
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    color: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
    padding-bottom: 20px;
    animation: titlePulse 2s ease-in-out infinite;
    color: #FFD700;
    z-index: 1;
}

.services h2::after {
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.services > .container > p {
    color: #e0e0e0 !important;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    perspective: 1000px;
}

/* Grid de 4 servicios (2x2) */
.services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: 25px;
}

.services-subtitulo {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 50px;
}

.services-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.services-cta-text {
    color: #b0b0b0;
    font-size: 17px;
    margin-bottom: 25px;
}

.services-cta-highlight {
    color: #FFD700;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ================================
   DATOS INDUSTRIA SECTION
   ================================ */
.datos-industria {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.datos-industria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.datos-industria h2 {
    font-size: 38px;
    text-align: center;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.datos-subtitulo {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 50px;
}

.datos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.dato-card {
    background: #121212;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: border-color 0.3s ease;
}

.dato-imagen {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: border-color 0.3s ease;
}

.dato-card:hover .dato-imagen {
    border-color: #FFA500;
}

.dato-card:hover {
    border-color: #FFA500;
}

.dato-numero {
    display: block;
    font-size: 56px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.dato-texto {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dato-link {
    color: #FFD700;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.dato-link:hover {
    text-decoration: underline;
    color: #FFA500;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .datos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .datos-industria h2 {
        font-size: 28px;
    }

    .dato-numero {
        font-size: 48px;
    }

    .dato-card {
        padding: 30px 25px;
    }
}

.service-card {
    background: #121212;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #FFD700;
    transition: border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: #FFA500;
}

.service-card p {
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #d0d0d0;
    background: transparent;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.service-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    -webkit-text-fill-color: initial;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: border-color 0.3s ease;
}

.service-card:hover .service-image {
    border-color: #FFA500;
}

/* ================================
   BENEFITS SECTION
   ================================ */
.benefits {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.benefits h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
    position: relative;
    padding-bottom: 20px;
    animation: titleFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.benefits h2::after {
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    perspective: 1000px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #121212;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    border: 2px solid #FFD700;
    position: relative;
}

.benefit-card p {
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #d0d0d0;
    background: transparent;
}

.benefit-card:hover {
    border-color: #FFA500;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* ================================
   CTA SECTION
   ================================ */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    animation: titlePulse 2s ease-in-out infinite;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    border-color: #FFD700;
}

/* CTA Zaki Horizontal */
.cta-zaki-horizontal {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-left-text {
    text-align: center;
}

.cta-right-button {
    text-align: center;
}

.cta-subtitle {
    color: #D4AF37;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 500;
}

.cta-left-text h2 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cta-left-text p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-right-button .cta-button {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #0a0a0a;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    display: inline-block;
}

.cta-right-button .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.cta-info {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* ================================
   FAQS SECTION - NUEVA VERSION
   ================================ */
.faqs-nueva {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
}

.faqs-nueva::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.faqs-nueva h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.faqs-subtitulo {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-bloques {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-bloque {
    background: #121212;
    border-radius: 8px;
    padding: 35px;
    border: 2px solid #FFD700;
    transition: border-color 0.3s ease;
}

.faq-bloque:hover {
    border-color: #FFA500;
}

.faq-pregunta {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-contenido {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-seccion {
    padding: 15px 20px;
    border-radius: 8px;
}

.faq-etiqueta {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.faq-seccion p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.faq-contexto {
    background: rgba(100, 100, 100, 0.15);
    border-left: 3px solid #888;
}

.faq-contexto .faq-etiqueta {
    background: rgba(100, 100, 100, 0.3);
    color: #aaa;
}

.faq-realidad {
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #FFD700;
}

.faq-realidad .faq-etiqueta {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.faq-posicion {
    background: rgba(255, 165, 0, 0.08);
    border-left: 3px solid #FFA500;
}

.faq-posicion .faq-etiqueta {
    background: rgba(255, 165, 0, 0.25);
    color: #FFA500;
}

.faq-posicion p {
    font-weight: 500;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .faqs-nueva h2 {
        font-size: 28px;
    }

    .faq-bloque {
        padding: 25px 20px;
    }

    .faq-pregunta {
        font-size: 20px;
    }

    .faq-seccion {
        padding: 12px 15px;
    }

    .faq-seccion p {
        font-size: 15px;
    }
}

/* ================================
   HERO SERVICIOS (pagina servicios.html)
   ================================ */
.hero-servicios {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.hero-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-servicios h1 {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFFFFF, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    position: relative;
    z-index: 1;
}

.hero-servicios p {
    font-size: 20px;
    color: #d0d0d0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.servicios-contenido {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    min-height: 400px;
}

.servicios-proximamente {
    text-align: center;
    color: #666;
    font-size: 18px;
    font-style: italic;
}

/* Secciones de servicios */
.servicios-seccion {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.servicios-seccion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.servicios-seccion h2 {
    font-size: 38px;
    text-align: center;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.servicios-seccion-subtitulo {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Grid de servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta de servicio */
.servicio-card {
    background: #121212;
    border-radius: 8px;
    padding: 35px 30px;
    border: 2px solid #FFD700;
    transition: border-color 0.3s ease;
}

.servicio-card:hover {
    border-color: #FFA500;
}

.servicio-card h3 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

/* Precios */
.servicio-precios {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.servicio-precio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.servicio-precio-item:first-child {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.servicio-precio-label {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.servicio-precio-valor {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
}

.servicio-precio-periodo {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

/* Descripcion */
.servicio-descripcion {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

/* Grid de 6 servicios (3x2) */
.servicios-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

/* Grid de 2 columnas (para Formación) */
.servicios-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    align-items: stretch;
}

.servicios-grid-2 .servicio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 25px;
    min-height: 320px;
}

.servicios-grid-2 .servicio-card h3 {
    margin-bottom: 0;
    font-size: 20px;
}

.servicios-grid-2 .servicio-precios {
    padding: 15px;
    margin: 0;
}

.servicios-grid-2 .servicio-descripcion {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
}

/* Tarjeta destacada (Gratis) */
.servicio-card-destacado {
    border: 3px solid #FFD700;
    position: relative;
}

.servicio-card-destacado::before {
    content: 'GRATIS';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

/* Precio centrado (para precios únicos/gratis) */
.servicio-precio-gratis {
    text-align: center;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.servicio-precio-gratis .servicio-precio-valor {
    font-size: 26px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    display: block;
    width: 100%;
    text-align: center;
}

/* Precios múltiples en fila */
.servicio-precios-multiple {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 5px 0;
}

.servicio-precios-multiple .servicio-precio-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 6px;
    padding: 5px 10px;
    text-align: center;
    flex: 0 1 auto;
    min-width: 80px;
}

.servicio-precios-multiple .servicio-precio-label {
    display: block;
    font-size: 10px;
    color: #888;
    margin-bottom: 2px;
}

.servicio-precios-multiple .servicio-precio-valor {
    font-size: 16px;
}

/* Precios en columna (Workshop) */
.servicio-precios-columna {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 15px;
}

.servicio-precios-columna .servicio-precio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.servicio-precios-columna .servicio-precio-item:last-child {
    border-bottom: none;
}

.servicio-precios-columna .servicio-precio-label {
    color: #999;
    font-size: 13px;
}

.servicio-precios-columna .servicio-precio-valor {
    font-size: 18px;
    color: #FFD700;
    font-weight: 700;
}

/* Precio "Consultar" */
.servicio-precio-valor.servicio-precio-consultar {
    font-size: 16px;
    color: #d0d0d0;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

/* Seccion alternativa (fondo diferente) */
.servicios-seccion-alt {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Disclaimer de precios */
.servicios-disclaimer {
    padding: 60px 0;
    background: #0a0a0a;
}

.disclaimer-bloque {
    background: #121212;
    border: 2px solid #FFD700;
    border-left: 4px solid #FFD700;
    padding: 25px 35px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

.disclaimer-bloque h3 {
    color: #FFD700;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', serif;
}

.disclaimer-bloque p {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .servicios-disclaimer {
        padding: 40px 0;
    }

    .disclaimer-bloque {
        padding: 20px 25px;
        margin: 0 15px;
    }

    .disclaimer-bloque p {
        font-size: 15px;
    }
}

/* ================================
   SECCIÓN INTRO SERVICIOS
   ================================ */
.servicios-intro {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
}

.servicios-intro h2 {
    color: #FFD700;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Playfair Display', serif;
}

.servicios-intro-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 35px 40px;
}

.servicios-intro-content p {
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.servicios-intro-content p:last-child {
    margin-bottom: 0;
}

.servicios-intro-content strong {
    color: #FFD700;
}

.servicios-intro-destacado {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #FFD700;
    padding: 15px 20px !important;
    margin-top: 25px !important;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    color: #fff !important;
}

@media (max-width: 768px) {
    .servicios-intro {
        padding: 40px 0;
    }

    .servicios-intro h2 {
        font-size: 26px;
        padding: 0 15px;
    }

    .servicios-intro-content {
        margin: 0 15px;
        padding: 25px 20px;
    }

    .servicios-intro-content p {
        font-size: 15px;
    }
}

/* ================================
   SECCIÓN ¿NO VES LO QUE BUSCAS?
   ================================ */
.servicios-no-ves {
    padding: 70px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.servicios-no-ves h2 {
    color: #FFD700;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.servicios-no-ves-content {
    max-width: 700px;
    margin: 0 auto 35px;
}

.servicios-no-ves-content p {
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.servicios-no-ves-content strong {
    color: #FFD700;
}

.servicios-no-ves-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 50%, #D4AF37 100%);
    color: #000;
    border: none;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.servicios-no-ves-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .servicios-no-ves {
        padding: 50px 0;
    }

    .servicios-no-ves h2 {
        font-size: 26px;
        padding: 0 15px;
    }

    .servicios-no-ves-content {
        padding: 0 20px;
    }

    .servicios-no-ves-content p {
        font-size: 15px;
    }

    .servicios-no-ves-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .servicios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .servicios-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .servicios-grid-2 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .servicios-grid-6 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .servicios-seccion {
        padding: 60px 0;
    }

    .servicios-seccion h2 {
        font-size: 28px;
    }

    .servicio-card {
        padding: 30px 25px;
    }

    .servicio-precio-valor {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-servicios {
        padding: 80px 0 60px;
    }

    .hero-servicios h1 {
        font-size: 32px;
    }

    .hero-servicios p {
        font-size: 17px;
        padding: 0 20px;
    }
}

/* ================================
   CTA FINAL SECTION
   ================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.cta-final h2 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.cta-final-subtitulo {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 40px;
}

.cta-final-btn-principal {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50px;
    color: #0a0a0a;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    font-family: 'Raleway', sans-serif;
}

.cta-final-btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.cta-final-alternativa {
    color: #999;
    font-size: 16px;
    margin: 50px auto 25px;
    max-width: 600px;
}

.cta-final-btn-secundario {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid #FFD700;
    border-radius: 50px;
    color: #FFD700;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-final-btn-secundario:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-final {
        padding: 70px 0;
    }

    .cta-final h2 {
        font-size: 30px;
    }

    .cta-final-subtitulo {
        font-size: 16px;
        padding: 0 20px;
    }

    .cta-final-btn-principal {
        padding: 15px 40px;
        font-size: 18px;
    }

    .cta-final-alternativa {
        margin: 40px auto 20px;
        padding: 0 20px;
    }
}

/* ================================
   BLOG POSTS
   ================================ */
.blog-posts {
    padding: 80px 0;
    background: #0a0a0a;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.post-card {
    background: #121212;
    border: 2px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.post-card:hover {
    border-color: #FFA500;
}

.post-card h3 {
    padding: 20px 20px 10px;
    color: #FFD700;
    font-size: 1.3rem;
}

.post-card p {
    padding: 0 20px;
    color: #d1d5db;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin: 20px;
    padding: 10px 25px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 25px;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-form {
    background: #121212;
    padding: 40px;
    border: 2px solid #FFD700;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    background-size: 200% 200%;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.contact-info {
    background: #121212;
    padding: 40px;
    border: 2px solid #FFD700;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.info-content h4 {
    color: #FFD700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    color: #d1d5db;
    margin: 0;
    line-height: 1.6;
}

/* Multiselect Styles */
.multiselect-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-dropdown {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dropdown:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.service-dropdown option {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 10px;
}

.selected-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 40px;
    padding: 10px;
    background: rgba(10, 10, 10, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.selected-services-tags:empty::before {
    content: 'Los servicios seleccionados aparecerán aquí...';
    color: rgba(224, 224, 224, 0.5);
    font-style: italic;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    animation: tagAppear 0.3s ease;
}

.service-tag:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    border-color: #FFD700;
}

.service-tag .remove-tag {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    line-height: 1;
    transition: all 0.2s ease;
}

.service-tag .remove-tag:hover {
    color: #FFA500;
    transform: scale(1.2);
}

/* ================================
   FOOTER
   ================================ */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: #d0d0d0;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

/* Redes Sociales */
.footer-redes {
    text-align: left;
}

.footer-redes h4 {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-iconos-redes {
    display: flex;
    gap: 15px;
}

.footer-icono-red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-icono-red:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.footer-icono-red svg {
    width: 22px;
    height: 22px;
}

/* Logo Central Animado */
.footer-logo-central {
    text-align: center;
}

.footer-logo-animado {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-animado img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: footerLogoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

@keyframes footerLogoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.footer-copyright {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-email a {
    color: #b0b0b0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #FFD700;
}

/* Enlaces Legales */
.footer-legal {
    text-align: right;
}

.footer-legal h4 {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-legal a {
    display: block;
    color: #b0b0b0;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #FFD700;
    transform: translateX(-5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 25px;
    }

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

    .footer-redes {
        text-align: center;
    }

    .footer-iconos-redes {
        justify-content: center;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-legal a:hover {
        transform: none;
    }

    .footer-logo-animado img {
        width: 70px;
        height: 70px;
    }
}

/* ================================
   CUSTOM CURSOR
   ================================ */
#cursor-trail {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    display: none;
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: transform 0.12s ease-out, opacity 0.12s ease-out;
    transform: translate(-50%, -50%);
}

/* ================================
   SCROLLBAR & SMOOTH SCROLL
   ================================ */
html {
    scroll-behavior: smooth;
}

/* ================================
   ZAKI HIGHLIGHT EFFECT
   ================================ */
.zaki-avatar.zaki-highlighted {
    transform: scale(1.3);
    animation: pulse-glow 2s ease-in-out infinite;
    z-index: 10001;
}

.zaki-avatar {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .services h2,
    .benefits h2,
    .about h2,
    .cta h2,
    .faqs h2,
    .seccion-conoce-zaki > .container > h2 {
        font-size: 32px;
    }

    h2::after {
        width: 60px !important;
    }

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

    .service-card h3 {
        font-size: 22px;
    }

    .logo-image-container {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 28px;
    }

    .about-layout {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

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

    .hamburger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

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

    .cta-left-text h2 {
        font-size: 32px;
    }

    .cta-left-text p {
        font-size: 16px;
    }

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

@media (min-width: 768px) {
    #cursor-trail {
        display: block;
    }

    /* Custom Scrollbar - WebKit browsers */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(20, 20, 20, 0.5);
        border-radius: 5px;
        margin: 2px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #FFD700, #FFA500);
        border-radius: 5px;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    ::-webkit-scrollbar-thumb:active {
        cursor: grabbing;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }

    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: #FFD700 rgba(20, 20, 20, 0.5);
    }
}

/* ================================
   SECCIÓN CONOCE A ZAKI
   ================================ */
/* Sección Conoce a Zaki - Layout 2 columnas */
.seccion-conoce-zaki {
    padding: 80px 20px;
    background: #0a0a0a;
}

.seccion-conoce-zaki > .container > h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
    padding-bottom: 20px;
    animation: titlePulse 2s ease-in-out infinite;
    color: #FFD700;
    z-index: 1;
}

.seccion-conoce-zaki > .container > h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    border-radius: 2px;
    animation: underlineGrow 2s ease infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contenedor-zaki-dos-columnas {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Ajustar altura de columna izquierda */
.columna-izquierda-intro {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
}

.icono-zaki-grande {
    margin-bottom: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.icono-zaki-grande img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8))
            drop-shadow(0 0 50px rgba(212, 175, 55, 0.4));
    border: none;
    outline: none;
    background: transparent;
}

.columna-izquierda-intro h2 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.descripcion-principal {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.boton-probar-zaki {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #0a0a0a;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.boton-probar-zaki:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.boton-probar-zaki:active {
    transform: translateY(-1px);
}

/* Espaciado columna derecha */
.columna-derecha-preguntas {
    padding-top: 60px;
}

.columna-derecha-preguntas h3 {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 40px;
    text-align: center;
}

/* Más espacio entre las cards */
.lista-preguntas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.card-pregunta {
    background: #121212;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.card-pregunta:hover {
    border-color: #FFD700;
}

.card-pregunta p {
    color: #E0E0E0;
    font-size: 16px;
    margin: 0;
}

/* Elementos nuevos columna izquierda */
.cita-zaki {
    font-size: 18px;
    color: #E0E0E0;
    font-style: italic;
    margin: 30px 0 10px;
}

.titulo-secundario {
    font-size: 28px;
    color: #D4AF37;
    margin: 15px 0;
}

/* Botón CTA principal (columna derecha) */
/* Botón CTA bien abajo */
.boton-cta-principal {
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    color: #0a0a0a;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boton-cta-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.info-disponibilidad {
    text-align: center;
    font-size: 14px;
    color: rgba(224, 224, 224, 0.7);
    margin-top: 15px;
}

/* Ajuste de espaciado columna izquierda */
.columna-izquierda-intro p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contenedor-zaki-dos-columnas {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .columna-izquierda-intro h2 {
        font-size: 28px;
    }

    .icono-zaki-grande {
        font-size: 60px;
    }

    .descripcion-principal {
        font-size: 16px;
    }

    .boton-probar-zaki {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* ================================
   BANNER DE COOKIES
   ================================ */
/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 2px solid #D4AF37;
    padding: 30px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #E0E0E0;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, #D4AF37, #F4C430);
    color: #0a0a0a;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cookie-necessary {
    background: transparent;
    color: #E0E0E0;
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.cookie-necessary:hover {
    background: rgba(224, 224, 224, 0.1);
}

.cookie-zaki-reminder {
    color: #FFD700 !important;
    font-size: 14px !important;
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px !important;
    display: inline-block;
}

.cookie-config {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.cookie-config:hover {
    background: rgba(212, 175, 55, 0.1);
}

.cookie-link {
    color: #D4AF37;
    font-size: 14px;
    text-decoration: underline;
}

/* Panel de Configuración de Cookies */
.cookie-config-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    display: none !important;
    visibility: hidden;
    opacity: 0;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-config-panel.show {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-config-content {
    background: #121212;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-config-content h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-config-content > p {
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 30px;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-option-info p {
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-toggle {
    flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-label {
    display: block;
    width: 60px;
    height: 32px;
    background: rgba(100, 100, 100, 0.5);
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
    background: linear-gradient(135deg, #D4AF37, #F4C430);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label::after {
    left: 32px;
}

.toggle-always-on {
    background: linear-gradient(135deg, #D4AF37, #F4C430) !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.toggle-always-on::after {
    left: 32px !important;
}

.cookie-toggle-disabled {
    position: relative;
}

.cookie-toggle-disabled::after {
    content: 'Siempre activas';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #D4AF37;
    white-space: nowrap;
}

.cookie-config-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cookie-config-buttons .cookie-btn {
    min-width: 180px;
}

@media (max-width: 600px) {
    .cookie-config-content {
        padding: 25px 20px;
    }

    .cookie-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-toggle-disabled::after {
        position: static;
        transform: none;
        display: block;
        margin-top: 5px;
    }

    .cookie-config-buttons .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Banner de cookies - Responsive mejorado */
@media (max-width: 480px) {
    .cookie-banner {
        padding: 20px 15px;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .cookie-content {
        padding: 0;
    }

    .cookie-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cookie-content p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .cookie-zaki-reminder {
        font-size: 12px !important;
        padding: 8px 12px;
        margin-bottom: 15px !important;
    }

    .cookie-buttons {
        gap: 10px;
    }

    .cookie-btn {
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 20px;
    }

    .cookie-link {
        font-size: 12px;
    }
}

/* Panel de configuración - Responsive mejorado */
@media (max-width: 480px) {
    .cookie-config-panel {
        padding: 10px;
    }

    .cookie-config-content {
        padding: 20px 15px;
        max-width: 100%;
        max-height: 85vh;
    }

    .cookie-config-content h3 {
        font-size: 20px;
    }

    .cookie-option {
        padding: 15px;
    }

    .cookie-option-info h4 {
        font-size: 14px;
    }

    .cookie-option-info p {
        font-size: 12px;
    }

    .toggle-label {
        width: 50px;
        height: 28px;
    }

    .toggle-label::after {
        width: 20px;
        height: 20px;
    }

    .cookie-toggle input[type="checkbox"]:checked + .toggle-label::after,
    .toggle-always-on::after {
        left: 26px !important;
    }

    .cookie-toggle-disabled::after {
        font-size: 10px;
    }

    .cookie-config-buttons {
        margin-top: 20px;
    }

    .cookie-config-buttons .cookie-btn {
        min-width: auto;
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Pantallas muy pequeñas (320px) */
@media (max-width: 360px) {
    .cookie-banner {
        padding: 15px 10px;
    }

    .cookie-content h3 {
        font-size: 18px;
    }

    .cookie-content p {
        font-size: 13px;
    }

    .cookie-zaki-reminder {
        font-size: 11px !important;
        padding: 6px 10px;
    }

    .cookie-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .cookie-config-content {
        padding: 15px 10px;
    }

    .cookie-option {
        padding: 12px;
        gap: 10px;
    }

    .cookie-option-info h4 {
        font-size: 13px;
    }

    .cookie-option-info p {
        font-size: 11px;
    }
}
