/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ============================================
   THEME VARIABLES
   ============================================ */
:root {
    /* Default Theme */
    --primary-color: #001D35;
    --secondary-color: rgb(255, 166, 0);
    --accent-color: rgb(255, 200, 50);
    --bg-color: #FFFFFF;
    --bg-gradient: linear-gradient(180deg, rgba(255, 166, 0, 0.03) 0%, rgba(255, 166, 0, 0.01) 50%, #FFFFFF 100%);
    --text-color: #001D35;
    --card-bg: #FFFFFF;
    --border-color: rgba(255, 166, 0, 0.2);
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #1a1a1a;
    --secondary-color: #ffd700;
    --accent-color: #ffed4e;
    --bg-color: #0f0f0f;
    --bg-gradient: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #000000 100%);
    --text-color: #f5f5f5;
    --card-bg: #1a1a1a;
    --border-color: rgba(255, 215, 0, 0.3);
}

/* Orange Theme */
[data-theme="orange"] {
    --primary-color: #ff6b35;
    --secondary-color: #ff8c42;
    --accent-color: #ffa366;
    --bg-color: #fff5f0;
    --bg-gradient: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.05) 50%, #fff5f0 100%);
    --text-color: #1a0f08;
    --card-bg: #ffffff;
    --border-color: rgba(255, 107, 53, 0.3);
}

/* Dark + Orange Theme */
[data-theme="dark-orange"] {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b35;
    --accent-color: #ff8c42;
    --bg-color: #0f0f0f;
    --bg-gradient: linear-gradient(180deg, #1a1a1a 0%, rgba(255, 107, 53, 0.1) 50%, #0f0f0f 100%);
    --text-color: #f5f5f5;
    --card-bg: #1a1a1a;
    --border-color: rgba(255, 107, 53, 0.3);
}

/* Orange + Yellow Theme */
[data-theme="orange-yellow"] {
    --primary-color: #ff6b35;
    --secondary-color: #ffd700;
    --accent-color: #ffed4e;
    --bg-color: #fffbf0;
    --bg-gradient: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 50%, #fffbf0 100%);
    --text-color: #2d1b0e;
    --card-bg: #ffffff;
    --border-color: rgba(255, 107, 53, 0.3);
}

/* Yellow + Orange Theme */
[data-theme="yellow-orange"] {
    --primary-color: #ffd700;
    --secondary-color: #ff6b35;
    --accent-color: #ff8c42;
    --bg-color: #fffef0;
    --bg-gradient: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, #fffef0 100%);
    --text-color: #2d1b0e;
    --card-bg: #ffffff;
    --border-color: rgba(255, 215, 0, 0.3);
}

/* Gray Theme */
[data-theme="gray"] {
    --primary-color: #4a4a4a;
    --secondary-color: #6b6b6b;
    --accent-color: #8a8a8a;
    --bg-color: #f5f5f5;
    --bg-gradient: linear-gradient(180deg, rgba(74, 74, 74, 0.1) 0%, rgba(107, 107, 107, 0.05) 50%, #f5f5f5 100%);
    --text-color: #1a1a1a;
    --card-bg: #ffffff;
    --border-color: rgba(74, 74, 74, 0.2);
}

/* Blue Theme */
[data-theme="blue"] {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --bg-color: #eff6ff;
    --bg-gradient: linear-gradient(180deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 50%, #eff6ff 100%);
    --text-color: #1e293b;
    --card-bg: #ffffff;
    --border-color: rgba(59, 130, 246, 0.3);
}

/* Green Theme */
[data-theme="green"] {
    --primary-color: #166534;
    --secondary-color: #22c55e;
    --accent-color: #4ade80;
    --bg-color: #f0fdf4;
    --bg-gradient: linear-gradient(180deg, rgba(22, 101, 52, 0.1) 0%, rgba(34, 197, 94, 0.05) 50%, #f0fdf4 100%);
    --text-color: #14532d;
    --card-bg: #ffffff;
    --border-color: rgba(34, 197, 94, 0.3);
}

/* Purple Theme */
[data-theme="purple"] {
    --primary-color: #6b21a8;
    --secondary-color: #a855f7;
    --accent-color: #c084fc;
    --bg-color: #faf5ff;
    --bg-gradient: linear-gradient(180deg, rgba(107, 33, 168, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, #faf5ff 100%);
    --text-color: #4c1d95;
    --card-bg: #ffffff;
    --border-color: rgba(168, 85, 247, 0.3);
}

/* Red Theme */
[data-theme="red"] {
    --primary-color: #991b1b;
    --secondary-color: #ef4444;
    --accent-color: #f87171;
    --bg-color: #fef2f2;
    --bg-gradient: linear-gradient(180deg, rgba(153, 27, 27, 0.1) 0%, rgba(239, 68, 68, 0.05) 50%, #fef2f2 100%);
    --text-color: #7f1d1d;
    --card-bg: #ffffff;
    --border-color: rgba(239, 68, 68, 0.3);
}

/* Teal Theme */
[data-theme="teal"] {
    --primary-color: #134e4a;
    --secondary-color: #14b8a6;
    --accent-color: #5eead4;
    --bg-color: #f0fdfa;
    --bg-gradient: linear-gradient(180deg, rgba(19, 78, 74, 0.1) 0%, rgba(20, 184, 166, 0.05) 50%, #f0fdfa 100%);
    --text-color: #0f766e;
    --card-bg: #ffffff;
    --border-color: rgba(20, 184, 166, 0.3);
}

/* Dark Blue Theme */
[data-theme="dark-blue"] {
    --primary-color: #0f172a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --bg-color: #0f172a;
    --bg-gradient: linear-gradient(180deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    --text-color: #e2e8f0;
    --card-bg: #1e293b;
    --border-color: rgba(59, 130, 246, 0.3);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-gradient);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #F5F5F5;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

[data-theme="dark"] .header,
[data-theme="dark-orange"] .header,
[data-theme="dark-blue"] .header {
    background: #F5F5F5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.eko-logo {
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-image {
    height: 90px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-partner {
    height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-login {
    color: var(--text-color) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    margin-left: 0.5rem;
    font-size: 0.85rem !important;
    background: var(--secondary-color) !important;
}

.nav-link-login::after {
    display: none;
}

.nav-link-login:hover {
    background: var(--accent-color) !important;
}

.nav-link-login i {
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

/* ============================================
   THEME SELECTOR
   ============================================ */
.theme-selector {
    position: relative;
    margin-left: 1rem;
}

.theme-btn {
    background: var(--secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.theme-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.theme-btn i {
    font-size: 1.1rem;
}

.theme-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.theme-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-color);
}

.theme-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .theme-option:hover,
[data-theme="dark-orange"] .theme-option:hover,
[data-theme="dark-blue"] .theme-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.theme-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.theme-set-default {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--secondary-color);
}

.theme-set-default:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .theme-set-default,
[data-theme="dark-orange"] .theme-set-default,
[data-theme="dark-blue"] .theme-set-default {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .theme-set-default:hover,
[data-theme="dark-orange"] .theme-set-default:hover,
[data-theme="dark-blue"] .theme-set-default:hover {
    background: rgba(255, 255, 255, 0.15);
}

.theme-set-default i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - BANNER ROTATIVO
   ============================================ */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(255, 166, 0, 0.15) 0%, rgba(255, 166, 0, 0.05) 100%);
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 166, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 166, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.rotating-banner {
    position: relative;
    height: 140px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.banner-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.banner-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: var(--secondary-color);
    opacity: 0.5;
    transform: scale(1.2);
}

.indicator.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--secondary-color);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-gradient);
}

.section-gray {
    background: var(--bg-gradient);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 3px;
}

[data-theme="dark"] .section-title,
[data-theme="dark-orange"] .section-title,
[data-theme="dark-blue"] .section-title {
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

/* ============================================
   QUEM SOMOS
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-color);
    font-weight: 400;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.about-image:hover {

}

/* ============================================
   O QUE FAZEMOS
   ============================================ */
.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-text {
    text-align: left;
}

.services-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-color);
    font-weight: 400;
}

.services-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item {
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover::before {

}


.gallery-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   NOSSOS DIFERENCIAIS
   ============================================ */
.diferenciais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.diferenciais-list {
    list-style: none;
    padding: 0;
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: transparent;
    position: relative;
}

.diferencial-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.diferencial-icon span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.diferencial-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.6;
    flex: 1;
}

/* ============================================
   NOSSOS PLANOS
   ============================================ */
.planos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.plano-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.plano-header {
    margin-bottom: 2rem;
}

.plano-gb {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1;
}

.plano-dados {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 0.5rem;
    font-weight: 500;
}

.plano-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plano-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.plano-feature i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.plano-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.plano-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.8;
}

.plano-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.plano-period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

/* ============================================
   BIBLIOTECA
   ============================================ */
.biblioteca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.biblioteca-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.biblioteca-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.biblioteca-circle i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    z-index: 1;
    position: relative;
}

.biblioteca-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

.biblioteca-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ============================================
   FALE CONOSCO
   ============================================ */
.equipe-section {
    margin-bottom: 5rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.equipe-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.equipe-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 29, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgb(255, 166, 0);
    position: relative;
    overflow: hidden;
}

.equipe-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, rgb(255, 166, 0), rgb(255, 200, 50));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Efeitos de hover removidos */
/* .equipe-item:hover .equipe-avatar::before {
    opacity: 1;
}

.equipe-item:hover .equipe-avatar {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, rgb(255, 166, 0) 0%, rgb(255, 200, 50) 100%);
    box-shadow: 0 20px 45px rgba(255, 166, 0, 0.4);
} */

.equipe-avatar i {
    font-size: 3.5rem;
    color: rgb(255, 166, 0);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

/* .equipe-item:hover .equipe-avatar i {
    color: #FFFFFF;
    transform: scale(1.1);
} */

.equipe-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

/* .equipe-item:hover .equipe-foto {
    transform: scale(1.1);
    filter: brightness(1.1);
} */

.equipe-departamento {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

/* .equipe-item:hover .equipe-departamento {
    color: rgb(255, 166, 0);
} */

/* ============================================
   FORMULÁRIO DE CONTATO
   ============================================ */
.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Garante layout de duas colunas em telas maiores */
@media (min-width: 769px) {
    .contact-form-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--border-color);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background: var(--card-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark-orange"] .form-group input:focus,
[data-theme="dark-orange"] .form-group textarea:focus,
[data-theme="dark-blue"] .form-group input:focus,
[data-theme="dark-blue"] .form-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-color);
    opacity: 0.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-color);
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .btn-primary,
[data-theme="dark-orange"] .btn-primary,
[data-theme="dark-blue"] .btn-primary {
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: var(--text-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .footer,
[data-theme="dark-orange"] .footer,
[data-theme="dark-blue"] .footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: var(--text-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.eko-logo-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 0.5rem 1rem;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-image-footer {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-description {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact li {
    color: var(--text-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .services-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #FFFFFF;
        width: 100%;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 29, 53, 0.15);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link-login {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .eko-logo {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .logo-image,
    .logo-partner {
        height: 60px;
        max-width: 100px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .banner-text {
        font-size: 2rem;
    }

    .rotating-banner {
        height: 120px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diferenciais-content {
        grid-template-columns: 1fr;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-gallery {
        display: flex;
        justify-content: center;
    }

    .services-text {
        text-align: center;
    }

    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .plano-card {
        padding: 2rem 1.5rem;
    }

    .plano-gb {
        font-size: 2.5rem;
    }

    .plano-value {
        font-size: 2rem;
    }

    .biblioteca-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .biblioteca-circle {
        width: 160px;
        height: 160px;
    }

    .equipe-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .equipe-avatar {
        width: 120px;
        height: 120px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 20px;
    }

    .banner-text {
        font-size: 1.5rem;
    }

    .rotating-banner {
        height: 100px;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .planos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plano-card {
        padding: 2rem 1.5rem;
    }

    .plano-gb {
        font-size: 2.25rem;
    }

    .plano-value {
        font-size: 1.875rem;
    }

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

    .biblioteca-circle {
        width: 140px;
        height: 140px;
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-map {
        min-height: 400px;
    }

    .contact-map iframe {
        min-height: 400px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-padding-top: 80px;
}
