/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

:root {
    /* Paleta Azul & Dourado */
    --azul-principal: #1a365d;
    --azul-medio: #2d4a8a;
    --azul-claro: #4a7bc1;
    --azul-suave: #e8f0fe;
    
    --dourado-principal: #d4af37;
    --dourado-medio: #e6c34e;
    --dourado-claro: #f0d97a;
    --dourado-suave: #faf4e1;
    
    /* Neutros */
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #e9ecef;
    --cinza-escuro: #495057;
    --preto: #212529;
    
    /* Sombras */
    --sombra-leve: 0 2px 10px rgba(26, 54, 93, 0.05);
    --sombra-media: 0 5px 20px rgba(26, 54, 93, 0.1);
    --sombra-forte: 0 10px 30px rgba(26, 54, 93, 0.15);
    
    /* Bordas */
    --borda-radius: 12px;
    --borda-radius-grande: 25px;
    
    /* Tamanhos de fonte */
    --font-size-base: 1.2rem;
    --font-size-large: 1.4rem;
    --font-size-xlarge: 1.6rem;
    --font-size-xxlarge: 2rem;
}

body {
    font-family: 'Parisienne', cursive;
    background: linear-gradient(135deg, var(--branco) 0%, var(--azul-suave) 100%);
    color: var(--preto);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--font-size-base);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA ===== */
.logo-font {
    font-family: 'Meddon', cursive;
    font-weight: 400;
    color: var(--azul-principal);
}

.cs-font, h1, h2, h3, h4, h5, h6, .carrossel-title, .setor-title, .form-title, .contato-title, .filosofia-title, .valores-title {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    color: var(--azul-principal);
}

/* FONTE MANUSCRITA AUMENTADA */
.slogan-font, p, .setor-desc, .filosofia-text, .valores-text, 
.preview-desc, .form-subtitle, .contato-info, .tagline-box,
.newsletter-desc, .newsletter-benefits li, .mascote-text,
.tagline, .setores-subtitle, .carrossel-desc, .form-notice,
.contato-horario, .footer-slogan, .slogan-footer, .dev-role,
.bussola-text, .grafismo-text, .footer-link, .contato-item {
    font-family: 'Parisienne', cursive;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Tamanhos específicos para destaques */
.tagline {
    font-size: 1.6rem;
}

.setores-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.mascote-text {
    font-size: 1.4rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===== HEADER ===== */
header {
    background-color: var(--branco);
    box-shadow: var(--sombra-leve);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO - DOBRO DO TAMANHO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-placeholder {
    height: auto;
    background: transparent;
    display: block;
    flex-shrink: 0;
}

.logo-imagem {
    height: 200px; /* DOBRADO: 100px → 200px */
    max-height: 220px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.header-text h1 {
    font-size: 2.8rem; /* Aumentado proporcionalmente */
    margin-bottom: 10px;
    line-height: 1.2;
}

.slogan {
    font-size: 1.5rem; /* Aumentado */
    color: var(--dourado-principal);
    margin: 0;
    line-height: 1.3;
    font-style: italic;
}

/* ===== NAVEGAÇÃO ===== */
#main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

#main-nav a {
    color: var(--azul-principal);
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

#main-nav a:hover {
    color: var(--dourado-principal);
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado-principal);
    transition: width 0.3s ease;
}

#main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--azul-principal);
    cursor: pointer;
    margin-left: 15px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* ===== MASCOTE NO TOPO - CORPO INTEIRO ===== */
.hero-mascote-top {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.hero-mascote-top .mascote-container {
    display: inline-block;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-mascote-top .mascote-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--dourado-principal);
    box-shadow: var(--sombra-forte);
}

.mascote-corpo-inteiro {
    width: 280px;
    height: 350px;
    object-fit: cover;
    object-position: center 20%;
}

.hero-mascote-top .selo-cs {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--azul-principal);
    color: var(--dourado-claro);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid var(--dourado-principal);
    box-shadow: var(--sombra-media);
}

.hero-mascote-top .elemento-liberdade {
    position: absolute;
    bottom: 20px;
    left: -20px;
}

.hero-mascote-top .passaro {
    font-size: 2.5rem;
    animation: fly 4s ease-in-out infinite;
}

.hero-mascote-top .gaiola {
    font-size: 2rem;
    opacity: 0.5;
}

.hero-mascote-top .mascote-text {
    margin-top: 20px;
    color: var(--dourado-claro);
    font-size: 1.4rem;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text {
    color: var(--branco);
}

.badge-em-breve {
    display: inline-block;
    background: var(--dourado-principal);
    color: var(--azul-principal);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-text h2 {
    color: var(--dourado-claro);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.destaque-hero {
    color: var(--dourado-claro);
    text-decoration: underline;
}

.tagline {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ===== SETORES COM CARROSSEL ===== */
.setores-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--borda-radius);
    border: 2px solid var(--dourado-principal);
    box-shadow: var(--sombra-media);
}

.setores-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--azul-medio);
    opacity: 0.9;
}

/* Setores empilhados em coluna única */
.setores-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.setor-card {
    background: linear-gradient(135deg, var(--branco) 0%, rgba(232, 240, 254, 0.8) 100%);
    border-radius: var(--borda-radius);
    padding: 2.5rem;
    box-shadow: var(--sombra-media);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid var(--dourado-principal);
    border-left: 2px solid var(--dourado-suave);
    border-right: 2px solid var(--dourado-suave);
    border-bottom: 2px solid var(--azul-suave);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.setor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-forte);
}

/* REMOVIDO O PSEUDO-ELEMENTO QUE CAUSA O SINAL AMARELO */
.setor-card::before {
    display: none; /* Remove o círculo decorativo */
}

.setor-icon {
    margin-bottom: 1.5rem;
}

.circulo-setor {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--branco) 0%, var(--azul-suave) 100%);
    border-radius: 50%;
    border: 4px solid var(--dourado-principal);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
    position: relative;
    overflow: hidden;
}

/* REMOVIDO O CÍRCULO AMARELO DECORATIVO */
.circulo-setor::after {
    display: none; /* Remove completamente o elemento que causa o sinal amarelo */
}

.setor-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.setor-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.setor-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--dourado-principal);
    border-radius: 2px;
}

.setor-desc {
    font-size: 1.3rem;
    color: var(--cinza-escuro);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* ===== CARROSSEL DE SUBSETORES ===== */
.carrossel-setor {
    margin-top: 2.5rem;
    position: relative;
    padding: 1rem 0;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
}

.carrossel-container {
    position: relative;
    overflow: visible;
    padding: 3rem 0;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
}

.carrossel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: flex-start;
}

.carrossel-slide {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    opacity: 0.6;
    transform: scale(0.85);
    scroll-snap-align: center;
}

.carrossel-slide.active {
    opacity: 1;
    transform: scale(1.15);
    z-index: 2;
    animation: slideIn 0.3s ease forwards;
}

.carrossel-circulo {
    width: 130px;
    height: 130px;
    background: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dourado-principal);
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--sombra-leve);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carrossel-slide.active .carrossel-circulo {
    width: 150px;
    height: 150px;
    border-width: 3px;
    border-color: var(--dourado-medio);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.carrossel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carrossel-slide.active .carrossel-img {
    transform: scale(1.1);
}

.carrossel-info {
    text-align: center;
    padding: 1.2rem;
    background: var(--branco);
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-leve);
    width: 100%;
    max-width: 220px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carrossel-slide.active .carrossel-info {
    background: linear-gradient(135deg, var(--azul-suave) 0%, var(--dourado-suave) 100%);
    box-shadow: var(--sombra-media);
    opacity: 1;
}

.carrossel-title {
    font-size: 1.2rem;
    color: var(--azul-principal);
    margin-bottom: 0.5rem;
}

.carrossel-slide.active .carrossel-title {
    color: var(--dourado-principal);
    font-size: 1.3rem;
}

.carrossel-desc {
    font-size: 1rem;
    color: var(--cinza-escuro);
    line-height: 1.4;
}

/* SETAS DO CARROSSEL */
.carrossel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--azul-principal);
    color: var(--branco);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--sombra-media);
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0.9;
}

.carrossel-nav:hover {
    background: var(--dourado-principal);
    color: var(--azul-principal);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
}

.carrossel-nav.prev {
    left: 20px;
}

.carrossel-nav.next {
    right: 20px;
}

.carrossel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.carrossel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cinza-medio);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carrossel-dot.active {
    background: var(--dourado-principal);
    transform: scale(1.3);
    border-color: var(--azul-principal);
}

.carrossel-indicador {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--azul-principal);
    background: var(--dourado-suave);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
}

/* ===== BOTÕES ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--dourado-principal) 0%, var(--dourado-medio) 100%);
    color: var(--azul-principal);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--azul-principal);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dourado-claro);
    padding: 16px 35px;
    border-radius: 50px;
    border: 2px solid var(--dourado-principal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--dourado-claro);
}

/* ===== SEÇÕES ===== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--dourado-principal);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--dourado-principal);
}

/* ===== FILOSOFIA (Missão e Visão) ===== */
.filosofia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.filosofia-card {
    background: var(--branco);
    border-radius: var(--borda-radius);
    padding: 30px;
    box-shadow: var(--sombra-media);
    text-align: center;
    border-top: 5px solid var(--dourado-principal);
    transition: transform 0.3s ease;
}

.filosofia-card:hover {
    transform: translateY(-10px);
}

.filosofia-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dourado-principal);
}

.filosofia-title {
    margin-bottom: 15px;
}

.filosofia-text {
    font-size: 1.3rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
}

/* ===== VALORES GRID (6 CARDS) ===== */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.valores-card {
    background: var(--branco);
    border-radius: var(--borda-radius);
    padding: 25px;
    box-shadow: var(--sombra-media);
    text-align: center;
    border-left: 4px solid var(--dourado-principal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valores-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-forte);
}

.valores-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dourado-principal);
}

.valores-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--azul-principal);
}

.valores-text {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    line-height: 1.5;
}

.taglines-box {
    background: linear-gradient(135deg, var(--azul-suave) 0%, var(--dourado-suave) 100%);
    border-radius: var(--borda-radius);
    padding: 40px;
    text-align: center;
    border: 2px solid var(--dourado-principal);
}

.tagline-box {
    font-size: 1.4rem;
    color: var(--azul-principal);
    margin: 10px 0;
    line-height: 1.5;
}

/* ===== CONTATO ===== */
.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.form-container {
    background: var(--branco);
    border-radius: var(--borda-radius);
    padding: 40px;
    box-shadow: var(--sombra-media);
}

.form-title {
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--cinza-escuro);
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--azul-principal);
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--cinza-medio);
    border-radius: var(--borda-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--dourado-principal);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a365d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345, 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    color: var(--branco);
    padding: 16px;
    border: none;
    border-radius: var(--borda-radius);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--azul-principal) 100%);
    transform: translateY(-2px);
}

/* ===== CONTATO DIRETO ===== */
.contato-direto {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-card {
    background: var(--branco);
    border-radius: var(--borda-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--sombra-media);
    border-top: 5px solid var(--dourado-principal);
}

.whatsapp-card {
    border-top-color: #25D366;
}

.contato-icon {
    font-size: 2.5rem;
    color: var(--dourado-principal);
    margin-bottom: 15px;
}

.whatsapp-card .contato-icon {
    color: #25D366;
}

.contato-title {
    margin-bottom: 10px;
}

.contato-info {
    color: var(--cinza-escuro);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contato-link {
    color: var(--azul-principal);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: var(--dourado-principal);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 10px 0;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: var(--branco);
}

.contato-horario {
    color: var(--cinza-escuro);
    font-size: 1rem;
    margin-top: 10px;
}

/* ===== NEWSLETTER ===== */
.newsletter-container {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-medio) 100%);
    border-radius: var(--borda-radius);
    padding: 60px;
    text-align: center;
    color: var(--branco);
}

.newsletter-badge {
    display: inline-block;
    background: var(--dourado-principal);
    color: var(--azul-principal);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.newsletter-title {
    color: var(--dourado-claro);
    margin-bottom: 20px;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-size: 1.3rem;
    line-height: 1.5;
}

.newsletter-benefits {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
    list-style: none;
}

.newsletter-benefits li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.4;
}

.newsletter-benefits i {
    color: var(--dourado-claro);
    margin-right: 10px;
}

.form-input-newsletter {
    width: 100%;
    max-width: 400px;
    padding: 16px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
}

.form-input-newsletter::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input-newsletter:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--dourado-claro);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--dourado-principal) 0%, var(--dourado-medio) 100%);
    color: var(--azul-principal);
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, var(--dourado-medio) 0%, var(--dourado-principal) 100%);
}

.form-notice {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 15px;
}

/* ===== ELEMENTOS GRÁFICOS ===== */
.elemento-montanha {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--borda-radius);
    border: 2px dashed var(--dourado-principal);
}

.montanha-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--dourado-principal);
}

.montanha-text {
    color: var(--azul-principal);
    font-size: 1.3rem;
}

.bussola-container {
    text-align: center;
    margin-top: 30px;
}

.bussola-icon {
    font-size: 2.5rem;
    color: var(--dourado-principal);
    margin-bottom: 10px;
}

.bussola-text {
    color: var(--azul-principal);
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--azul-principal);
    color: var(--branco);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--dourado-claro);
    margin-bottom: 10px;
}

.footer-slogan {
    color: var(--dourado-claro);
    font-size: 1.3rem;
}

.footer-grafismo {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.grafismo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.grafismo-icon {
    font-size: 1.2rem;
}

.grafismo-text {
    color: var(--dourado-claro);
    font-size: 1rem;
}

.footer-title {
    color: var(--dourado-claro);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-link:hover {
    color: var(--dourado-claro);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--dourado-claro);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--dourado-principal);
    color: var(--azul-principal);
    transform: translateY(-3px);
}

.footer-contato {
    margin-top: 20px;
}

.contato-item {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.slogan-footer {
    color: var(--dourado-claro);
    font-size: 1.3rem;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.footer-dev-signature {
    margin-top: 3rem;
    text-align: center;
}

.footer-divider {
    margin: 2rem 0;
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.dev-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.dev-role {
    opacity: 0.8;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.dev-whatsapp {
    color: #25d366;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

.dev-whatsapp:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--branco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--branco);
}

/* ===== ANIMAÇÕES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fly {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(0); }
    75% { transform: translateX(10px) translateY(10px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: block;
    }
    
    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--branco);
        padding: 20px;
        box-shadow: var(--sombra-media);
    }
    
    #main-nav.active {
        display: block;
    }
    
    #main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    #main-nav a {
        font-size: 1rem;
    }
    
    /* Logo responsivo - DOBRADO */
    .logo-imagem {
        height: 150px; /* Reduzido proporcionalmente para mobile */
        max-height: 160px;
    }
    
    .header-text h1 {
        font-size: 2.2rem;
    }
    
    .slogan {
        font-size: 1.3rem;
    }
    
    /* Fontes no mobile */
    .slogan-font, p, .setor-desc, .filosofia-text, .valores-text {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .setores-subtitle {
        font-size: 1.3rem;
    }
    
    /* Mascote responsivo */
    .mascote-corpo-inteiro {
        width: 220px;
        height: 280px;
    }
    
    .hero-mascote-top .mascote-img {
        width: 200px;
        height: 200px;
    }
    
    .hero-mascote-top .mascote-text {
        font-size: 1.2rem;
    }
    
    .tagline-esporadica {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    /* Botões */
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta, .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 25px;
    }
    
    /* Setores */
    .setores-container {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .setores-grid {
        gap: 2rem;
    }
    
    .setor-card {
        padding: 1.5rem;
    }
    
    .circulo-setor {
        width: 170px;
        height: 170px;
        border-width: 3px;
        padding: 15px;
    }
    
    .setor-title {
        font-size: 1.6rem;
    }
    
    .setor-desc {
        font-size: 1.1rem;
    }
    
    /* Carrossel mobile */
    .carrossel-container {
        padding: 2rem 0;
        max-width: 100%;
        overflow: visible;
    }
    
    .carrossel-track {
        padding: 1rem;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .carrossel-slide {
        flex: 0 0 180px;
        min-width: 180px;
    }
    
    .carrossel-circulo {
        width: 100px;
        height: 100px;
    }
    
    .carrossel-slide.active .carrossel-circulo {
        width: 120px;
        height: 120px;
    }
    
    .carrossel-info {
        max-width: 180px;
        padding: 1rem;
    }
    
    .carrossel-title {
        font-size: 1rem;
    }
    
    .carrossel-slide.active .carrossel-title {
        font-size: 1.1rem;
    }
    
    .carrossel-desc {
        font-size: 0.9rem;
    }
    
    .carrossel-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background: rgba(26, 54, 93, 0.9);
    }
    
    .carrossel-nav.prev {
        left: 5px;
    }
    
    .carrossel-nav.next {
        right: 5px;
    }
    
    .carrossel-dots {
        margin-top: 2rem;
    }
    
    /* Newsletter */
    .newsletter-container {
        padding: 40px 20px;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-desc {
        font-size: 1.2rem;
    }
    
    .newsletter-benefits li {
        font-size: 1.1rem;
    }
    
    /* Tamanhos de fonte */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    /* Valores grid */
    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .valores-text {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-slogan {
        font-size: 1.2rem;
    }
    
    .slogan-footer {
        font-size: 1.2rem;
    }
    
    .footer-link, .contato-item {
        font-size: 1.1rem;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .logo-imagem {
        height: 120px; /* Reduzido para caber */
        max-height: 130px;
    }
    
    .header-text h1 {
        font-size: 1.9rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .slogan-font, p, .setor-desc, .filosofia-text, .valores-text {
        font-size: 1.15rem;
    }
    
    .hero-mascote-top .mascote-img {
        width: 180px;
        height: 180px;
    }
    
    .mascote-corpo-inteiro {
        width: 180px;
        height: 230px;
    }
    
    .hero-mascote-top .mascote-text {
        font-size: 1.1rem;
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .circulo-setor {
        width: 140px;
        height: 140px;
        border-width: 3px;
        padding: 12px;
    }
    
    .setor-title {
        font-size: 1.4rem;
    }
    
    .setor-desc {
        font-size: 1rem;
    }
    
    /* Carrossel muito pequeno */
    .carrossel-slide {
        flex: 0 0 150px;
        min-width: 150px;
    }
    
    .carrossel-circulo {
        width: 80px;
        height: 80px;
    }
    
    .carrossel-slide.active .carrossel-circulo {
        width: 100px;
        height: 100px;
    }
    
    .carrossel-info {
        max-width: 150px;
        padding: 0.8rem;
    }
    
    .carrossel-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .carrossel-nav:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
    
    .carrossel-dots {
        margin-top: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .tagline-box {
        font-size: 1.2rem;
    }
}

/* Telas extremamente pequenas */
@media (max-width: 360px) {
    .logo-imagem {
        height: 100px;
        max-height: 110px;
    }
    
    .carrossel-slide {
        flex: 0 0 130px;
        min-width: 130px;
    }
    
    .carrossel-circulo {
        width: 70px;
        height: 70px;
    }
    
    .carrossel-slide.active .carrossel-circulo {
        width: 85px;
        height: 85px;
    }
    
    .carrossel-nav {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .carrossel-slide {
        flex: 0 0 200px;
    }
    
    .carrossel-circulo {
        width: 120px;
        height: 120px;
    }
    
    .carrossel-slide.active .carrossel-circulo {
        width: 140px;
        height: 140px;
    }
    
    .carrossel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Telas grandes */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-imagem {
        height: 180px; /* Ajuste intermediário */
    }
    
    .header-text h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .carrossel-container {
        max-width: 1000px;
    }
}

/* Suporte a alto contraste */
@media (prefers-contrast: high) {
    .cs-font, .slogan-font, .logo-font {
        font-weight: 600 !important;
    }
    
    .hero-text h2, .hero-mascote-top .mascote-text {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    }
    
    .carrossel-slide.active {
        outline: 3px solid var(--azul-principal);
    }
}

/* Suporte a modo escuro */
@media (prefers-color-scheme: dark) {
    .hero-section {
        background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    }
    
    .setor-card, .filosofia-card, .valores-card, .form-container, .contato-card {
        background: #1e293b;
        color: #e2e8f0;
    }
    
    .setor-title, .filosofia-title, .valores-title, .form-title, .contato-title {
        color: #e2e8f0;
    }
    
    .setor-desc, .filosofia-text, .valores-text, .form-subtitle, .contato-info {
        color: #cbd5e1;
    }
    
    .carrossel-info {
        background: #1e293b;
        color: #e2e8f0;
    }
    
    .carrossel-slide.active .carrossel-info {
        background: #2d3748;
    }
    
    .taglines-box {
        background: linear-gradient(135deg, #1e293b 0%, #2d3748 100%);
    }
    
    .tagline-box {
        color: #e2e8f0;
    }
}