/* ==========================================================================
   STAR PESQUISAS - Sections Styles
   ========================================================================== */

/* ==========================================================================
   1. HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height-mobile);
    z-index: var(--z-fixed);
    background-color: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--branco);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--dourado);
}

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

/* Header CTA Button */
.header-cta {
    display: none;
}

/* Mobile Menu Button */
.hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--spacing-sm);
    cursor: pointer;
    z-index: calc(var(--z-fixed) + 10);
    position: relative;
    background: transparent;
    border: none;
}

.hamburger-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    color: var(--branco);
    transition: all 0.3s ease;
}

.hamburger .icon-menu {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.hamburger .icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Hamburger para X */
.hamburger.active .icon-menu {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.hamburger.active .icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--azul-escuro);
    padding: var(--spacing-4xl) var(--spacing-xl);
    z-index: var(--z-fixed);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.mobile-nav-link {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--branco);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--dourado);
}

.mobile-nav-cta {
    margin-top: var(--spacing-xl);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-fixed) - 1);
}

@media (min-width: 1024px) {
    .header {
        height: var(--header-height);
    }

    .logo {
        height: 45px;
    }

    .nav-desktop {
        display: block;
    }

    .header-cta {
        display: block;
    }

    .hamburger {
        display: none;
    }
}

/* ==========================================================================
   2. HERO
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height-mobile) + var(--spacing-xl));
    padding-bottom: var(--spacing-3xl);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.hero-badge .star-icon {
    color: var(--dourado);
    font-size: var(--text-lg);
}

.hero-badge-text {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--dourado);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--branco);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-3xl);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-titulo);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--dourado);
    display: block;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    pointer-events: none;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(198, 162, 105, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(198, 162, 105, 0.15);
    border-radius: 50%;
    bottom: 10%;
    left: -150px;
}

/* Animated Stars Container */
.hero-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Individual Animated Star */
.hero-star {
    position: absolute;
    width: 12px;
    height: 12px;
    color: var(--dourado);
    opacity: 0;
    animation: starTwinkle 4s ease-in-out infinite;
    will-change: transform, opacity;
}

.hero-star::before {
    content: "\2726";
    font-size: 14px;
    display: block;
}

/* Vary star sizes */
.hero-star:nth-child(3n) {
    font-size: 10px;
}

.hero-star:nth-child(3n)::before {
    font-size: 10px;
}

.hero-star:nth-child(5n) {
    font-size: 18px;
}

.hero-star:nth-child(5n)::before {
    font-size: 18px;
}

.hero-star:nth-child(7n) {
    font-size: 8px;
}

.hero-star:nth-child(7n)::before {
    font-size: 8px;
}

/* Stagger animations */
.hero-star:nth-child(1) { animation-delay: 0s; }
.hero-star:nth-child(2) { animation-delay: 0.3s; }
.hero-star:nth-child(3) { animation-delay: 0.6s; }
.hero-star:nth-child(4) { animation-delay: 0.9s; }
.hero-star:nth-child(5) { animation-delay: 1.2s; }
.hero-star:nth-child(6) { animation-delay: 1.5s; }
.hero-star:nth-child(7) { animation-delay: 1.8s; }
.hero-star:nth-child(8) { animation-delay: 2.1s; }
.hero-star:nth-child(9) { animation-delay: 2.4s; }
.hero-star:nth-child(10) { animation-delay: 2.7s; }
.hero-star:nth-child(11) { animation-delay: 0.2s; }
.hero-star:nth-child(12) { animation-delay: 0.5s; }
.hero-star:nth-child(13) { animation-delay: 0.8s; }
.hero-star:nth-child(14) { animation-delay: 1.1s; }
.hero-star:nth-child(15) { animation-delay: 1.4s; }
.hero-star:nth-child(16) { animation-delay: 1.7s; }
.hero-star:nth-child(17) { animation-delay: 2.0s; }
.hero-star:nth-child(18) { animation-delay: 2.3s; }
.hero-star:nth-child(19) { animation-delay: 2.6s; }
.hero-star:nth-child(20) { animation-delay: 2.9s; }
.hero-star:nth-child(21) { animation-delay: 0.4s; }
.hero-star:nth-child(22) { animation-delay: 0.7s; }
.hero-star:nth-child(23) { animation-delay: 1.0s; }
.hero-star:nth-child(24) { animation-delay: 1.3s; }
.hero-star:nth-child(25) { animation-delay: 1.6s; }
.hero-star:nth-child(26) { animation-delay: 1.9s; }
.hero-star:nth-child(27) { animation-delay: 2.2s; }
.hero-star:nth-child(28) { animation-delay: 2.5s; }

/* Star Twinkle Animation - Very Slow */
@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.15;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + var(--spacing-2xl));
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-stat-number {
        font-size: var(--text-3xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }

    .hero-stat-number {
        font-size: var(--text-4xl);
    }
}

/* ==========================================================================
   3. SOBRE
   ========================================================================== */

.sobre {
    background-color: var(--branco);
}

.sobre-content {
    display: grid;
    gap: var(--spacing-3xl);
}

.sobre-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sobre-text p {
    font-size: var(--text-lg);
    line-height: 1.9;
    color: var(--cinza-texto);
}

@media (min-width: 768px) {
    .sobre-text p {
        font-size: var(--text-xl);
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.value-card .card-icon {
    margin: 0 auto var(--spacing-lg);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* ==========================================================================
   4. SERVICOS
   ========================================================================== */

.servicos {
    background-color: var(--cinza-claro);
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.servico-card {
    text-align: left;
}

.servico-card .card-icon {
    width: 50px;
    height: 50px;
    font-size: var(--text-xl);
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   5. METODOLOGIA WI-FI
   ========================================================================== */

.metodologia {
    background: var(--gradient-metodologia);
    position: relative;
    overflow: hidden;
}

.metodologia .section-header {
    color: var(--branco);
}

.metodologia .section-title {
    color: var(--branco);
}

.metodologia .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Maleta Showcase */
.metodologia-showcase {
    display: grid;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-4xl);
}

.maleta-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--dourado);
    box-shadow: var(--shadow-dourado);
    aspect-ratio: 11/6;
}

/* Maleta Slider */
.maleta-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.maleta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
}

.maleta-slide.active {
    opacity: 1;
}

.maleta-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(198, 162, 105, 0.1), rgba(19, 63, 92, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-md);
    color: var(--dourado);
}

.maleta-placeholder i {
    font-size: var(--text-6xl);
    opacity: 0.5;
}

.maleta-placeholder span {
    font-size: var(--text-sm);
    opacity: 0.7;
}

/* Timeline */
.metodologia-timeline {
    position: relative;
}

.timeline-title {
    font-size: var(--text-lg);
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.timeline-steps {
    display: grid;
    gap: var(--spacing-xl);
}

.timeline-step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-principal);
    border: 2px solid var(--dourado);
    border-radius: var(--radius-full);
    font-family: var(--font-titulo);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--dourado);
}

.timeline-content h4 {
    font-size: var(--text-lg);
    color: var(--branco);
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Specs Grid */
.metodologia-specs {
    margin-top: var(--spacing-4xl);
}

.specs-title {
    font-size: var(--text-lg);
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 162, 105, 0.2);
    border-radius: var(--radius-md);
}

.spec-icon {
    font-size: var(--text-2xl);
    color: var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.spec-icon svg {
    width: 28px;
    height: 28px;
}

.spec-text {
    color: var(--branco);
    font-size: var(--text-sm);
}

.spec-text strong {
    display: block;
    color: var(--dourado);
    font-weight: var(--font-semibold);
}

/* Vantagens */
.metodologia-vantagens {
    margin-top: var(--spacing-4xl);
}

.vantagens-title {
    font-size: var(--text-lg);
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.vantagem-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--branco);
    font-size: var(--text-sm);
}

.vantagem-item i {
    color: var(--dourado);
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .metodologia-showcase {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vantagens-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   6. LGPD & SEGURANCA
   ========================================================================== */

.seguranca {
    background-color: var(--branco);
    position: relative;
}

.seguranca-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
}

.seguranca-card {
    padding: var(--spacing-2xl);
}

.seguranca-card .card-icon {
    width: 70px;
    height: 70px;
    font-size: var(--text-2xl);
}

/* Certificacoes */
.certificacoes {
    background-color: var(--cinza-claro);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-3xl);
}

.certificacoes-title {
    font-size: var(--text-lg);
    color: var(--azul-principal);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.certificacoes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.certificacao-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--text-sm);
    color: var(--cinza-texto);
}

.certificacao-item i {
    color: var(--dourado);
    font-size: var(--text-lg);
}

/* Data Flow */
.data-flow {
    text-align: center;
}

.data-flow-title {
    font-size: var(--text-lg);
    color: var(--azul-principal);
    margin-bottom: var(--spacing-xl);
}

.data-flow-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.flow-step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-principal);
    color: var(--dourado);
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
}

.flow-step-text {
    font-size: var(--text-xs);
    color: var(--cinza-texto);
    text-align: center;
}

.flow-arrow {
    color: var(--dourado);
    font-size: var(--text-xl);
}

.data-flow-note {
    font-size: var(--text-sm);
    color: var(--cinza-texto);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

@media (min-width: 768px) {
    .seguranca-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .certificacoes-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   7. NUMEROS/IMPACTO
   ========================================================================== */

.numeros {
    background-color: var(--azul-principal);
    position: relative;
    overflow: hidden;
}

.numeros .section-header {
    color: var(--branco);
}

.numeros .section-title {
    color: var(--branco);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.numero-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.numero-value {
    font-family: var(--font-titulo);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--dourado);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.numero-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Decorations */
.numeros-star {
    position: absolute;
    color: var(--dourado);
    opacity: 0.1;
    font-size: var(--text-6xl);
}

.numeros-star-1 {
    top: 10%;
    left: 5%;
}

.numeros-star-2 {
    bottom: 15%;
    right: 10%;
}

@media (min-width: 768px) {
    .numeros-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .numero-value {
        font-size: var(--text-4xl);
    }
}

@media (min-width: 1024px) {
    .numeros-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .numero-value {
        font-size: var(--text-5xl);
    }
}

/* ==========================================================================
   8. PROCESSO
   ========================================================================== */

.processo {
    background-color: var(--cinza-claro);
}

.processo-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.processo-steps {
    display: grid;
    gap: var(--spacing-xl);
}

.processo-step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.processo-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-principal);
    border: 3px solid var(--dourado);
    border-radius: var(--radius-full);
    font-family: var(--font-titulo);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--dourado);
}

.processo-content {
    flex: 1;
    padding-top: var(--spacing-sm);
}

.processo-content h4 {
    font-size: var(--text-xl);
    color: var(--azul-principal);
    margin-bottom: var(--spacing-sm);
}

.processo-content p {
    font-size: var(--text-sm);
    color: var(--cinza-texto);
    margin-bottom: 0;
}

.processo-note {
    text-align: center;
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-lg);
    background-color: var(--branco);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--dourado);
}

.processo-note p {
    margin-bottom: 0;
    color: var(--cinza-texto);
}

.processo-note strong {
    color: var(--azul-principal);
}

@media (min-width: 1024px) {
    .processo-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-md);
    }

    .processo-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .processo-content {
        padding-top: 0;
    }
}

/* ==========================================================================
   9. CLIENTES/DEPOIMENTOS
   ========================================================================== */

.clientes {
    background-color: var(--branco);
}

/* Carousel */
.depoimentos-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--spacing-4xl);
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.depoimento-slide {
    flex: 0 0 100%;
    padding: 0 var(--spacing-lg);
}

.depoimento-content {
    text-align: center;
    padding: var(--spacing-2xl);
    background-color: var(--cinza-claro);
    border-radius: var(--radius-lg);
    position: relative;
}

.depoimento-quote {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-xl);
    font-size: var(--text-6xl);
    color: var(--dourado);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-text {
    font-size: var(--text-lg);
    color: var(--cinza-escuro);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.depoimento-author {
    font-weight: var(--font-semibold);
    color: var(--azul-principal);
    margin-bottom: var(--spacing-xs);
}

.depoimento-role {
    font-size: var(--text-sm);
    color: var(--cinza-texto);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-principal);
    color: var(--branco);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background-color: var(--dourado);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--cinza-medio);
    transition: all var(--transition-base);
    cursor: pointer;
}

.carousel-dot.active {
    background-color: var(--dourado);
    width: 30px;
}

/* Logos */
.clientes-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    opacity: 0.6;
}

.cliente-logo {
    max-width: 120px;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.cliente-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   10. CTA FINAL
   ========================================================================== */

.cta-final {
    background: var(--gradient-metodologia);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final .section-badge {
    color: var(--dourado);
}

.cta-final .section-title {
    color: var(--branco);
}

.cta-final .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
}

.cta-button {
    margin-bottom: var(--spacing-xl);
}

.cta-phone {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
}

.cta-phone a {
    color: var(--dourado);
    font-weight: var(--font-semibold);
}

.cta-phone a:hover {
    text-decoration: underline;
}

/* Decorations */
.cta-star {
    position: absolute;
    color: var(--dourado);
    opacity: 0.1;
}

.cta-star-1 {
    top: 20%;
    left: 10%;
    font-size: var(--text-4xl);
}

.cta-star-2 {
    bottom: 20%;
    right: 15%;
    font-size: var(--text-3xl);
}

/* ==========================================================================
   11. CONTATO
   ========================================================================== */

.contato {
    background-color: var(--cinza-claro);
}

.contato-grid {
    display: grid;
    gap: var(--spacing-3xl);
}

/* Form */
.contato-form-wrapper {
    background-color: var(--branco);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contato-form-title {
    font-size: var(--text-xl);
    color: var(--azul-principal);
    margin-bottom: var(--spacing-xl);
}

/* Info */
.contato-info {
    display: grid;
    gap: var(--spacing-xl);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-principal);
    color: var(--dourado);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
}

.info-content h4 {
    font-size: var(--text-base);
    color: var(--azul-principal);
    margin-bottom: var(--spacing-xs);
}

.info-content p {
    font-size: var(--text-sm);
    color: var(--cinza-texto);
    margin-bottom: 0;
}

.info-content a {
    color: var(--cinza-texto);
}

.info-content a:hover {
    color: var(--dourado);
}

.contato-social {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--cinza-medio);
}

.contato-social h4 {
    font-size: var(--text-base);
    color: var(--azul-principal);
    margin-bottom: var(--spacing-md);
}

@media (min-width: 1024px) {
    .contato-grid {
        grid-template-columns: 3fr 2fr;
    }
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.footer {
    background-color: var(--azul-principal);
    padding-top: var(--spacing-4xl);
}

.footer-top {
    display: grid;
    gap: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 45px;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.footer-column {
    overflow: hidden;
    min-width: 0;
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
}

.footer-list li {
    margin-bottom: var(--spacing-sm);
}

.footer-list a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    word-break: break-all;
}

.footer-list a:hover {
    color: var(--dourado);
}

.footer-list li {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-md);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-badge {
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(198, 162, 105, 0.3);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    color: var(--dourado);
}

.footer-hashtag {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--dourado);
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-copyright {
        margin-bottom: 0;
    }

    .footer-badges {
        margin-bottom: 0;
    }
}
