* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e8f9ff;
    background: #070c16;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a0033 0%, #220055 100%);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, #008b8b, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 139, 139, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #39ff14);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.privacy-link {
    color: #39ff14 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 5px 0;
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    margin-top: 60px;
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #220055 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00ffff, transparent);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffff00, transparent);
    bottom: 10%;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seccion-extra {
    display: none;
}

.seccion-extra .close-section {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: #00ffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seccion-extra .close-section:hover {
    background: rgba(255, 255, 0, 0.15);
    color: #ffff00;
}

.seccion-extra.show {
    display: block;
}

.seccion-extra .especial-content {
    position: relative;
}

.hero-title {
    font-size: 6.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #00ffff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
    max-width: 100%;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #00ffff;
    margin-bottom: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #00ccff);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #39ff14;
    border: 2px solid #39ff14;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-secondary:hover {
    background: #39ff14;
    color: black;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.8);
    transform: translateY(-3px);
}

/* SERVICIOS SECTION */
.servicios {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00ffff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servicio-card {
    background: linear-gradient(135deg, rgba(1, 10, 27, 0.96), rgba(9, 24, 51, 0.96));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(57, 255, 20, 0.22);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.servicio-card:hover {
    transform: translateY(-10px);
    border: 2px solid #39ff14;
    box-shadow: 0 25px 60px rgba(57, 255, 20, 0.35);
}

.servicio-icon {
    font-size: 3rem;
    color: #39ff14;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ffff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.servicio-card p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* TESTIMONIOS SECTION */
.testimonios {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
}

.testimonios-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #00ffff;
    margin-bottom: 50px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(10, 16, 34, 0.95));
    padding: 30px;
    border-radius: 18px;
    border: 2px solid rgba(57, 255, 20, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonio-card:hover {
    border: 2px solid #39ff14;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.3), inset 0 0 20px rgba(57, 255, 20, 0.05);
    transform: translateY(-5px);
}

.calificacion {
    display: flex;
    gap: 8px;
}

.star {
    color: #ffff00;
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

.testimonio-texto {
    color: #e0e0e0;
    line-height: 1.8;
    font-style: italic;
    font-size: 0.95rem;
    flex: 1;
}

.testimonio-autor {
    border-top: 2px solid rgba(57, 255, 20, 0.3);
    padding-top: 15px;
}

.testimonio-autor h4 {
    color: #39ff14;
    font-size: 1rem;
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
}

.testimonio-autor p {
    color: #00ffff;
    font-size: 0.85rem;
}

/* CONTACTO SECTION */
.contacto {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(57, 255, 20, 0.12);
    border-radius: 18px;
    padding: 25px;
}

.info-icon {
    font-size: 2rem;
    color: #39ff14;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(0, 255, 255, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 5px;
}

.info-item p {
    color: #e0e0e0;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-form input,
.contacto-form textarea {
    padding: 18px 22px;
    border: 2px solid rgba(57, 255, 20, 0.16);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.27);
    color: #e8f9ff;
    transition: all 0.3s ease;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contacto-form button {
    background: linear-gradient(135deg, #39ff14, #00ffff);
    color: #000;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.contacto-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #111827;
    color: #e8f9ff;
    margin: 10% auto;
    padding: 40px;
    border: 2px solid #39ff14;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.3);
}

.modal-content h2,
.modal-content p,
.modal-content label {
    color: #e8f9ff;
}

.close {
    color: #39ff14;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffff00;
}

.modal h2 {
    color: #00ffff;
    margin-bottom: 30px;
    font-size: 2rem;
}

.privacy-content h3 {
    color: #39ff14;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.privacy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #1a0033 0%, #220055 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #39ff14;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #39ff14;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #aaa;
}

.message-circle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1ebe5e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 1500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.message-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.message-circle i {
    margin: 0;
}

.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
}

.chat-panel {
    display: none;
    flex-direction: column;
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: rgba(5, 10, 30, 0.96);
    border: 1px solid rgba(57, 255, 20, 0.25);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chat-panel.open {
    display: flex;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 18px 12px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(57, 255, 20, 0.12));
    border-bottom: 1px solid rgba(57, 255, 20, 0.12);
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
}

.chat-header p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #b8fdf3;
}

.chat-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    max-height: 320px;
    overflow-y: auto;
}

.chat-message {
    padding: 12px 16px;
    border-radius: 18px;
    line-height: 1.5;
}

.chat-message.user {
    align-self: flex-end;
    background: rgba(0, 255, 255, 0.14);
    color: #e8f9ff;
}

.chat-message.bot {
    align-self: flex-start;
    background: rgba(57, 255, 20, 0.15);
    color: #e8f9ff;
}

.chat-system {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    color: #b8fdf3;
    font-size: 0.95rem;
}

.chat-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(57, 255, 20, 0.12);
    background: rgba(0, 0, 0, 0.15);
}

.chat-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #e8f9ff;
    font-size: 0.95rem;
}

.chat-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.chat-form button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #00ffff, #39ff14);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.chat-form button:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contacto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 50% auto;
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ANIMACIONES ADICIONALES */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.servicio-card:hover .servicio-icon {
    animation: pulse 1s ease-in-out;
}

/* SECCIÓN ESPECIAL OCULTA */
.seccion-especial {
    display: none;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border-top: 2px solid #39ff14;
    border-bottom: 2px solid #39ff14;
    position: relative;
    overflow: hidden;
}

.seccion-especial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 139, 139, 0.1) 0%, transparent 50%);
}

.especial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.especial-title {
    font-size: 2.8rem;
    color: #39ff14;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.especial-subtitle {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 50px;
    font-weight: 300;
}

.especial-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    border: 1px solid #39ff14;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #ffff00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.especial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #39ff14;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    margin-bottom: 10px;
}

.stat-label {
    color: #00ffff;
    font-size: 1rem;
    font-weight: 500;
}

/* BOTÓN ESPECIAL */
.btn-special {
    background: linear-gradient(135deg, #ffff00, #ff6b35);
    color: #000;
    border: 2px solid #ffff00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-special:hover::before {
    left: 100%;
}

.btn-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 255, 0, 0.8);
}

/* POR QUÉ ELEGIRNOS SECTION */
.por-que-elegirnos {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #00ffff;
    margin-bottom: 60px;
    font-weight: 300;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    border: 2px solid #39ff14;
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.3);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffff00;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.beneficio-card p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* PROCESO SECTION */
.proceso {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.proceso-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.proceso-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #39ff14, #00ffff);
    transform: translateX(-50%);
}

.proceso-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.proceso-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.proceso-step:nth-child(even) .step-content {
    margin-left: 0;
    margin-right: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #39ff14, #ffff00);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    z-index: 2;
    position: relative;
}

.step-content {
    background: linear-gradient(135deg, #16213e, #0f3460);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-left: 40px;
    border-left: 4px solid #39ff14;
    flex: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
    border-left: 4px solid #ffff00;
}

.proceso-step:nth-child(even) .step-content:hover {
    transform: translateX(-10px);
}

.step-content h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,20,0.95), rgba(20,10,40,0.95));
    z-index: 3000;
    border-top: 3px solid rgba(57,255,20,0.12);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.6);
}

.cookie-banner .btn {
    padding: 10px 18px;
    border-radius: 8px;
}

/* RGPD consent checkbox styling */
.rgpd-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #39ff14;
}

@media (max-width: 768px) {
    .cookie-banner div { flex-direction: column; align-items: stretch; gap:8px; }
}
