/* ====================================
   STYLES GÉNÉRAUX
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: linear-gradient(to bottom, #faf5ff, #ffffff);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   HEADER
   ==================================== */
header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    color: white;
    padding: 2.5rem 0;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ====================================
   NAVIGATION
   ==================================== */
nav {
    background: rgba(91, 33, 182, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e9d5ff, #c084fc);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #e9d5ff;
    background: rgba(233, 213, 255, 0.1);
}

nav a:hover::after {
    width: 80%;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    background: linear-gradient(rgba(124, 58, 237, 0.85), rgba(168, 85, 247, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23a855f7" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ====================================
   SECTIONS
   ==================================== */
section {
    padding: 4rem 0;
}

.section-alt {
    background-color: white;
}

h2 {
    font-size: 2rem;
    color: #7c3aed;
    margin-bottom: 2rem;
    text-align: center;
}

/* ====================================
   MISSION
   ==================================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: linear-gradient(145deg, #ffffff, #faf5ff);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-top: 4px solid #a855f7;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
    border-color: #a855f7;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.15) rotate(5deg);
}

.mission-card h3 {
    color: #7c3aed;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ====================================
   ABOUT TEXT
   ==================================== */
.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: #7c3aed;
    font-weight: 600;
}

/* ====================================
   WHATSAPP SECTION
   ==================================== */
.whatsapp-section {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.whatsapp-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.whatsapp-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ====================================
   VALUES
   ==================================== */
.values {
    background: linear-gradient(to bottom, #faf5ff, #f3e8ff);
    padding: 4rem 0;
}

.values-list {
    list-style: none;
    max-width: 700px;
    margin: 2rem auto;
}

.values-list li {
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #ffffff, #faf5ff);
    border-left: 5px solid #a855f7;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(124, 58, 237, 0.1);
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.values-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
    border-left-width: 8px;
}

.values-list li:before {
    content: "❤";
    position: absolute;
    left: 1rem;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.values-list li:hover:before {
    transform: scale(1.2) rotate(10deg);
}

/* ====================================
   FOOTER
   ==================================== */
footer {
    background-color: #5b21b6;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-heart {
    color: #e9d5ff;
    font-size: 1.2rem;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 1rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}