/* Variáveis de Cores - Epeixão Design System */
:root {
    --epeixao-blue-light: #3cc0ed;
    --epeixao-blue-navy: #005f9e;
    --epeixao-orange: #ea4e1b;
    --epeixao-white: #ffffff;
    --neutral-light: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --light-blue: #3cc0ed;
    /* Alias for compatibility */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--neutral-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--epeixao-blue-navy);
}

h1 {
    color: var(--epeixao-orange);
}

/* Utilities */
.text-orange {
    color: var(--epeixao-orange) !important;
}

.text-navy {
    color: var(--epeixao-blue-navy) !important;
}

.text-light-blue {
    color: var(--epeixao-blue-light) !important;
}

.bg-navy {
    background-color: var(--epeixao-blue-navy) !important;
    color: white;
}

.bg-blue-light {
    background-color: var(--epeixao-blue-light) !important;
    color: white;
}

.btn-orange {
    background-color: var(--epeixao-orange);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-orange:hover {
    background-color: #d14012;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 78, 27, 0.3);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--epeixao-blue-navy);
    border-color: white;
}

/* Navbar */
.navbar {
    background-color: var(--epeixao-blue-navy);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--epeixao-blue-light) !important;
}

/* General Utilities */
.section-padded {
    padding: 5rem 0;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.9);
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

/* Seção Hero */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 42, 158, 0.85), rgba(60, 192, 237, 0.7)), url('https://images.unsplash.com/photo-1544551763-46a8723ba3f9?q=80&w=1470&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    color: var(--epeixao-blue-navy);
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: var(--epeixao-white);
    /* Override for Hero */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-hero {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.logo-hero:hover {
    transform: scale(1.05);
}

.cta-button {
    /* Using .btn-orange styles naturally, adding specific hero adjustments */
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-size: 1.1rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Vídeo */
.video-placeholder {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.video-placeholder:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    border-radius: 16px;
}

.video-placeholder:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--epeixao-white);
    color: var(--epeixao-orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-play:hover {
    background-color: var(--epeixao-orange);
    color: white;
    transform: scale(1.1);
}

/* Cards de Grupos */
.group-card {
    transition: all 0.3s ease;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px;
}

.group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 95, 158, 0.1) !important;
    border-color: var(--epeixao-blue-light) !important;
}

.group-card .icon-box {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.group-card:hover .icon-box {
    background-color: var(--epeixao-blue-navy) !important;
    color: white !important;
}

/* Benefícios */
#beneficios {
    background: linear-gradient(rgba(0, 95, 158, 0.9), rgba(0, 40, 80, 0.95)), url('https://images.unsplash.com/photo-1520601831454-bdd57367807d?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.benefit-item i {
    transition: transform 0.3s ease;
    color: var(--epeixao-blue-light);
    /* Default icon color in benefits */
}

/* Override specific colors in benefits if they used text-warning etc, or force them to follow brand */
.benefit-item .text-warning {
    color: var(--epeixao-orange) !important;
}

.benefit-item .text-info {
    color: var(--epeixao-blue-light) !important;
}

.benefit-item .text-success {
    color: #2ecc71 !important;
}

/* Keep green for variety or map to blue-light? Keeping green for now */
.benefit-item .text-primary {
    color: var(--epeixao-blue-light) !important;
}

.benefit-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--epeixao-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Depoimentos */
.avatar-img {
    border: 4px solid var(--epeixao-blue-light);
    padding: 2px;
    background: white;
}

/* Footer */
footer.bg-dark {
    background-color: #0b1e33 !important;
    /* A very dark navy, almost black, fitting the brand */
}

.social-link i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover i {
    color: var(--epeixao-orange) !important;
    transform: translateY(-3px);
}

.hover-white:hover {
    color: var(--epeixao-white) !important;
}

.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .section-padded {
        padding: 3rem 0;
    }

    .navbar-brand img,
    .hero-section img {
        display: block !important;
        max-width: 40%;
        height: auto;
    }
}