/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #AF8636;
    --primary-dark: #8B6F2A;
    --primary-light: #D4A547;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #666666;
    --white: #ffffff;
    --text-light: #f5f5f5;
    --text-dark: #2c2c2c;
    --background-light: #ffffff;
    --background-dark: #0a0a0a;
    --card-bg-light: #f8f9fa;
    --card-bg-dark: #1a1a1a;
    --border-light: #e0e0e0;
    --border-dark: #333333;
}

/* Modo escuro como padrão */
:root {
    --text-primary: var(--text-light);
    --text-secondary: var(--light-gray);
    --background-primary: var(--background-dark);
    --background-secondary: var(--dark-gray);
    --card-background: var(--card-bg-dark);
    --border-color: var(--border-dark);
}

/* Modo claro quando ativado */
[data-theme="light"] {
    --text-primary: var(--text-dark);
    --text-secondary: var(--gray);
    --background-primary: var(--background-light);
    --background-secondary: #f5f5f5;
    --card-background: var(--card-bg-light);
    --border-color: var(--border-light);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    transition: all 0.3s ease;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--primary-color);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(40deg);
}

.nav-logo-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.nav-logo-text span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Botão de alternância de tema */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

/* Container para ações da navbar */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Botões de ação da navbar */
.nav-action-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    min-width: auto;
}

.nav-action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(175, 134, 54, 0.3);
}

.nav-action-btn i {
    font-size: 1rem;
}

.nav-action-btn span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Estilos específicos para cada botão */
.admin-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.admin-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(175, 134, 54, 0.3);
}

.validate-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.validate-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(175, 134, 54, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 50%, var(--background-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(175, 134, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(175, 134, 54, 0.02) 0%, transparent 50%);
    z-index: 1;
    animation: gradientShift 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(175, 134, 54, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(175, 134, 54, 0.015) 0%, transparent 40%);
    z-index: 1;
    animation: gradientShift 25s ease-in-out infinite reverse;
}

/* Gradientes mais fortes para modo claro */
[data-theme="light"] .hero::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(175, 134, 54, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(175, 134, 54, 0.06) 0%, transparent 50%);
}

[data-theme="light"] .hero::after {
    background: 
        radial-gradient(circle at 60% 40%, rgba(175, 134, 54, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(175, 134, 54, 0.05) 0%, transparent 40%);
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(175, 134, 54, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo-img {
    max-width: 500px;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.6s ease;
    animation: logoFloat 8s ease-in-out infinite;
}

.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 12px 24px rgba(175, 134, 54, 0.4));
    animation-play-state: paused;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
        filter: drop-shadow(0 10px 20px rgba(175, 134, 54, 0.2));
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
        filter: drop-shadow(0 12px 24px rgba(175, 134, 54, 0.3));
    }
    75% {
        transform: translateY(-8px) rotate(0.5deg);
        filter: drop-shadow(0 10px 20px rgba(175, 134, 54, 0.2));
    }
}

/* Partículas animadas */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 18s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 20s;
}

.particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 15%;
    animation-delay: 3.5s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Formas abstratas */
.abstract-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    opacity: 0.05;
    animation: floatShape 25s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 25s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 10s;
    animation-duration: 35s;
    border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 15s;
    animation-duration: 28s;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 70%;
    animation-delay: 20s;
    animation-duration: 32s;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-40px, -30px) rotate(270deg);
    }
}

/* Ajustes para modo claro - cores mais fortes e visíveis */
[data-theme="light"] .particle {
    background: var(--primary-color);
    opacity: 0.8;
    box-shadow: 
        0 0 8px rgba(175, 134, 54, 0.4),
        0 0 16px rgba(175, 134, 54, 0.2),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(175, 134, 54, 0.2);
}

[data-theme="light"] .shape {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    opacity: 0.5;
    box-shadow: 
        0 0 15px rgba(175, 134, 54, 0.3),
        0 0 30px rgba(175, 134, 54, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(175, 134, 54, 0.15);
}

/* Ajustes para modo escuro */
[data-theme="dark"] .particle {
    background: var(--primary-light);
    opacity: 0.15;
}

[data-theme="dark"] .shape {
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    opacity: 0.08;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--background-secondary);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.text-white {
    color: var(--white) !important;
}

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

.service-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 134, 54, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Featured Products */
.featured-products {
    padding: 6rem 0;
    background: var(--background-primary);
}

.featured-products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.product-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
    background: var(--background-secondary);
    overflow: hidden;
}

.about .container {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/megabanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    background: none;
    padding: 2.5rem 0;
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.diferenciais {
    list-style: none;
    margin-bottom: 2rem;
}

.diferenciais li {
    color: #f0f0f0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(175, 134, 54, 0.1);
    border: 1px solid rgba(175, 134, 54, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(175, 134, 54, 0.15);
    border-color: rgba(175, 134, 54, 0.3);
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Documentação Section */
.documentation-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.doc-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.doc-card:hover::before {
    transform: scaleX(1);
}

.doc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.doc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.doc-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.doc-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.doc-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.doc-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Target Audience */
.target-audience {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.target-audience h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(175, 134, 54, 0.1);
}

.audience-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
}

.audience-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

.legal-notice {
    background: rgba(175, 134, 54, 0.05);
    border: 1px solid rgba(175, 134, 54, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.legal-notice p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.about-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(175, 134, 54, 0.3);
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(175, 134, 54, 0.3);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-banner {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(175, 134, 54, 0.3);
    transition: transform 0.3s ease;
}

.about-banner:hover {
    transform: scale(1.02);
}

/* Ajuste para modo escuro */
[data-theme="dark"] .about-background {
    opacity: 0.8;
}


/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--background-secondary);
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.products > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 4rem !important;
}

.products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.all-products-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.all-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(175, 134, 54, 0.4);
}

/* Courses Section */
.courses {
    padding: 6rem 0;
    background: var(--background-primary);
}

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

.courses-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.courses-header p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.course-covers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-cover-card {
    background: var(--card-background);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-cover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-cover-card:hover::before {
    transform: scaleX(1);
}

.course-cover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Imagem do curso */
.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Ícone padrão quando não há imagem */
.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

/* Conteúdo do card */
.course-content {
    padding: 2rem 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-cover-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.course-cover-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-cover-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.course-cover-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.course-cover-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Seções com Banner */
.hero-banner {
    height: 60vh;
    background-image: url('imagens/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

/* Ajuste do overlay para modo claro */
[data-theme="light"] .banner-overlay {
    background: rgba(255, 255, 255, 0.466);
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-banner .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-banner .hero-text p {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Ajuste das cores do texto para modo claro */
[data-theme="light"] .hero-banner .hero-content {
    color: var(--text-primary);
}

[data-theme="light"] .hero-banner .hero-text h1 {
    color: var(--text-primary);
    text-shadow: 2px 2px 12px rgba(255, 255, 255, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .hero-banner .hero-text p {
    color: var(--text-secondary);
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Página Sobre Nós */
.about-main {
    padding: 6rem 0;
    background: var(--background-primary);
}

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

.about-main .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-main .about-text {
    flex: 0 0 45%;
    padding: 2.5rem 0;
}

.about-main .about-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-section {
    padding: 4rem 0;
    background: var(--background-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.4;
}

.commitment-section {
    padding: 6rem 0;
    background: var(--background-primary);
    text-align: center;
}

.commitment-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.commitment-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.store-info {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.store-info h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.store-card {
    background: var(--background-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.store-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.store-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.store-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.store-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.store-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Seção de Peritos */
.experts-section {
    padding: 6rem 0;
    background: var(--background-primary);
}

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

.experts-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.experts-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 360px));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.expert-card {
    background: var(--background-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 360px;
    min-width: 360px;
    max-width: 360px;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expert-photo {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-photo img {
    width: 360px;
    height: 360px;
    object-fit: cover;
}

.expert-icon {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.expert-icon i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
}

.expert-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expert-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.expert-registry {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expert-registry i {
    color: var(--primary-color);
}

.expert-curriculum {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.partnerships {
    padding: 6rem 0;
    background: var(--background-primary);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.partnership-item {
    padding: 2rem;
    background: var(--background-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.partnership-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnership-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partnership-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Página Fale Conosco */
.contact-main {
    padding: 6rem 0;
    background: var(--background-primary);
}

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

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-card {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-section {
    background: var(--background-secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--text-secondary);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--background-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(175, 134, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.contact-submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.whatsapp-cta {
    padding: 4rem 0;
    background: var(--background-secondary);
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
}

.whatsapp-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.whatsapp-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Seção do Mapa */
.map-section {
    padding: 6rem 0;
    background: var(--background-primary);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.map-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-btn {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

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

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.3rem;
    }
    
    .nav-action-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-action-btn span {
        font-size: 0.75rem;
    }
    
    .theme-toggle {
        margin-left: 0;
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-logo-text h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo-text span {
        font-size: 0.8rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        max-width: 90%;
        text-align: left;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-main .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-main .about-text {
        flex: 1;
    }
    
    .about-main .about-image {
        flex: 1;
    }
    
    .about .container {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }
    
    .about-text {
        padding: 2rem 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    
    .course-covers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .doc-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .products-categories {
        grid-template-columns: 1fr;
    }
    
    .course-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-actions {
        gap: 0.2rem;
    }
    
    .nav-action-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .nav-action-btn span {
        display: none; /* Esconder texto em telas muito pequenas */
    }
    
    .nav-action-btn i {
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .category-card {
        padding: 1.5rem;
    }
    
    .about-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .about-banner {
        max-width: 300px;
    }
    
    .course-cover-image {
        aspect-ratio: 1080 / 1350;
        padding: 0.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .whatsapp-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-banner {
        height: 50vh;
    }
    
    .hero-banner .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner .hero-text p {
        font-size: 1.1rem;
    }
    
    /* Ajuste do overlay para mobile no modo claro */
    [data-theme="light"] .banner-overlay {
        background: rgba(255, 255, 255, 0.4);
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .map-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-logo {
        padding: 15px;
    }
    
    .logo-img {
        max-width: 300px;
        max-height: 300px;
    }
    
    /* Ajustes das partículas para mobile */
    .particle:nth-child(1),
    .particle:nth-child(2),
    .particle:nth-child(3),
    .particle:nth-child(4),
    .particle:nth-child(5) {
        display: none;
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .shape-3 {
        width: 80px;
        height: 80px;
    }
    
    .shape-4 {
        width: 60px;
        height: 60px;
    }
    
    .shape-5 {
        width: 90px;
        height: 90px;
    }
    
}

/* Responsividade - Seção de Peritos */
@media (max-width: 768px) {
    .experts-section {
        padding: 4rem 0;
    }
    
    .experts-header {
        margin-bottom: 2.5rem;
    }
    
    .experts-header h2 {
        font-size: 2rem;
    }
    
    .experts-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .expert-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .expert-photo,
    .expert-icon {
        height: 360px;
    }
    
    .expert-photo img {
        width: 100%;
        height: 360px;
    }
    
    .expert-icon i {
        font-size: 6rem;
    }
    
    .expert-info {
        padding: 1.5rem;
    }
    
    .expert-info h3 {
        font-size: 1.3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.product-card,
.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estilo para links de navegação ativos */
.nav-link.active {
    color: var(--primary-color);
}

/* Melhorias de acessibilidade */
button:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Transições suaves para mudanças de tema */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animação de pulso para o botão WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Esconder tooltip em mobile */
    }
}

/* ========================================
   MODAL DE DETALHAMENTO DO CURSO
   ======================================== */

.curso-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.curso-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.curso-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.curso-modal-content {
    position: relative;
    background: var(--card-background);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(175, 134, 54, 0.3);
}

.curso-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.curso-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

#cursoModalBody {
    padding: 40px;
}

/* Loading da modal */
.loading-curso-modal {
    text-align: center;
    padding: 60px 20px;
}

.loading-curso-modal .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(175, 134, 54, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-curso-modal p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Conteúdo da modal */
.curso-modal-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
}

.curso-modal-image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.curso-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-modal-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.curso-modal-image-placeholder i {
    font-size: 80px;
    color: var(--white);
    opacity: 0.5;
}

.curso-modal-info {
    flex: 1;
}

.curso-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.curso-modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.curso-modal-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(175, 134, 54, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.curso-modal-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.curso-modal-description {
    margin-bottom: 30px;
}

.curso-modal-description h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.curso-modal-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.curso-modal-professor {
    background: rgba(175, 134, 54, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.curso-modal-professor h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curso-modal-professor h3 i {
    font-size: 1.3rem;
}

.curso-modal-professor-info {
    color: var(--text-secondary);
    line-height: 1.6;
}

.curso-modal-professor-info p {
    margin-bottom: 8px;
}

.curso-modal-professor-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.curso-modal-modulos {
    margin-bottom: 30px;
}

.curso-modal-modulos h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curso-modal-modulos h3 i {
    font-size: 1.4rem;
}

.curso-modal-modulo-item {
    background: rgba(175, 134, 54, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.curso-modal-modulo-item:hover {
    background: rgba(175, 134, 54, 0.1);
    transform: translateX(5px);
}

.curso-modal-modulo-titulo {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.curso-modal-modulo-descricao {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.curso-modal-modulo-duracao {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.curso-modal-modulo-duracao i {
    font-size: 0.9rem;
}

.curso-modal-actions {
    display: flex;
    gap: 15px;
    padding-top: 30px;
    border-top: 2px solid rgba(175, 134, 54, 0.2);
}

.curso-modal-btn {
    flex: 1;
    padding: 16px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curso-modal-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(175, 134, 54, 0.3);
}

.curso-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(175, 134, 54, 0.5);
}

.curso-modal-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.curso-modal-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsividade da modal */
@media (max-width: 768px) {
    .curso-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    #cursoModalBody {
        padding: 25px 20px;
    }
    
    .curso-modal-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .curso-modal-image {
        width: 100%;
        height: 200px;
    }
    
    .curso-modal-title {
        font-size: 1.5rem;
    }
    
    .curso-modal-meta {
        gap: 10px;
    }
    
    .curso-modal-badge {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .curso-modal-actions {
        flex-direction: column;
    }
    
    .curso-modal-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .curso-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}
