:root {
    --primary-bg: #0b1121;
    --secondary-bg: #141b2d;
    --accent-cyan: #06b6d4;
    --accent-cyan-glow: rgba(6, 182, 212, 0.5);
    --accent-orange: #f59e0b;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.light-bg {
    background-color: var(--secondary-bg);
}

/* Helpers */
.highlight-text {
    color: var(--accent-cyan);
    position: relative;
}
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--accent-cyan-glow);
    z-index: -1;
    transform: skewX(-15deg);
}
h2 span {
    color: var(--accent-cyan);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #3b82f6);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-cyan-glow);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px var(--accent-cyan-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}
.btn-outline:hover {
    background: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}
.btn-instagram:hover {
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6);
}

.btn-facebook {
    background: #1877F2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}
.btn-facebook:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
}

.glow-effect {
    animation: glowpulse 2s infinite;
}
@keyframes glowpulse {
    0% { box-shadow: 0 0 0 0 var(--accent-cyan-glow); }
    70% { box-shadow: 0 0 0 15px rgba(6, 182, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(11, 17, 33, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo span {
    color: var(--accent-cyan);
}

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

.nav-links li a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: var(--accent-cyan);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 90%;
    max-height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.2);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.2);
    bottom: 100px;
    left: -100px;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-img {
    position: relative;
}

.mission-img img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.img-backdrop {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    z-index: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-text .lead {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.mission-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.mission-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mission-badges span {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mission-badges i {
    color: var(--accent-cyan);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(6, 182, 212, 0.3);
}

.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
}

.features {
    margin-bottom: 20px;
}

.features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}
.features i {
    color: var(--accent-cyan);
    width: 20px;
}

.price {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.price .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* SOS Section */
.sos-section {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0,0,0,0));
}

.sos-content {
    background: var(--card-bg);
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.sos-content h2 span {
    color: var(--accent-orange);
}

.sos-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.sos-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 12px;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.sos-card:hover {
    transform: scale(1.05);
}

.sos-card.highlight {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.sos-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sos-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.sos-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
}

/* Inscription Section */
.inscription-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-box, .payment-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.info-box h3, .payment-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.info-box h3 i, .payment-box h3 i {
    color: var(--accent-cyan);
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-list i {
    color: #10B981;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
}

.method-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.alert {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--accent-orange);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
}

.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Footer */
.footer {
    background: rgba(0,0,0,0.5);
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h2 {
    font-size: 1.8rem;
}
.footer-logo h2 span {
    color: var(--accent-cyan);
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 5px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid var(--glass-border);
}
.footer-social a:hover {
    background: var(--accent-cyan);
    color: #000;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1s forwards;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-img {
        order: 2;
    }

    .inscription-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 17, 33, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .menu-btn {
        display: block;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
}
