/* ==========================================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary: #ffffff;
    --secondary: #000000;
    --primary-light: #ffffff;
    --background: linear-gradient(135deg, #000000 0%, #141414 100%);
    --text: #efefef;
    --card-bg: #1a1a1a;
    --accent: #ffffff;
    --grid-color: rgba(68, 68, 68, 0.15);
    --border-color: rgba(255, 255, 255, 0.3);
    --primary-very-light: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    /* Substitui SVG complexo por gradiente simples para mobile */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apenas desktop mostra o ruído SVG */
@media (min-width: 769px) {
    body {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    }
}

h1, h2, h3, h4, .cta-button {
    font-family: 'Agrandir', sans-serif;
    font-weight: 700;
}

/* ==========================================================================
   LAYOUT E CONTAINERS
   ========================================================================== */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container2 {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */
.thin-text {
    font-weight: 400;
    color: var(--text);
    font-size: 0.8em;
    display: inline;
}

.bold-text {
    background: linear-gradient(90deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(221, 221, 221, 0.7);
    display: inline;
}

h2 {
    font-size: 2.0rem !important;
}

/* ==========================================================================
   BOTÕES E CTAs
   ========================================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Agrandir', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    color: #000000;
    /* Reduz blur em mobile */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 
                0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .cta-button {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4), 
                    0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(153, 153, 153, 0.5), 
                0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: scale(0.97);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.cta-container0 {
    display: flex;
    justify-content: flex-start; 
    text-align: left;
    margin-top: 30px;
    width: 100%;
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    border: none;
    padding: 40px 0;
}

/* Gradientes radiais apenas em desktop */
@media (min-width: 769px) {
    #hero {
        background: radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%), 
                    radial-gradient(ellipse at 20% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 0%), 
                    var(--secondary);
    }
    
    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 15%), 
                    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 15%);
        pointer-events: none;
    }
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 40px;
    text-align: left;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(101, 101, 101, 0.5);
    text-align: left;
    width: 100%;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    text-align: left;
}

.botao1 {
    width: auto;
    display: flex;
    justify-content: flex-start;
}

/* CENTRALIZAÇÃO DO BOTÃO CTA APENAS EM MOBILE */
@media (max-width: 768px) {
    .botao1 {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        margin-top: 15px !important;
    }
    
    .botao1 .cta-button {
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    margin-left: 80px;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

/* Removido filter: blur() desnecessário */
.hero-image::before {
    display: none;
}

/* ==========================================================================
   SEÇÃO BENEFITS
   ========================================================================== */
#benefits {
    background-color: var(--secondary);
    position: relative;
    padding: 50px 0;
    isolation: isolate;
    margin-bottom: 50px;
    overflow: hidden;
}

/* Background com imagem do chess - MOBILE: sem fixed */
#benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #111 url(/assets/chess_background.webp) center/cover no-repeat;
    opacity: 0.8;
    z-index: -1;
    box-shadow: 
        0 -20px 40px -10px rgba(0, 0, 0, 0.7),
        inset 0 4px 6px rgba(255, 255, 255, 0.03);
}

/* DESKTOP: com fixed para efeito parallax */
@media (min-width: 769px) {
    #benefits::before {
        background: 
            radial-gradient(ellipse at 20% 80%, rgba(26, 26, 26, 0.7) 0%, transparent 60%),
            radial-gradient(ellipse at 90% 10%, rgba(42, 42, 42, 0.5) 0%, transparent 50%),
            #111 url(/assets/chess_background.webp) center/cover no-repeat fixed;
        box-shadow: 
            0 -50px 80px -15px rgba(0, 0, 0, 0.9),
            0 -30px 50px -10px rgba(0, 0, 0, 0.7),
            0 -15px 25px -5px rgba(0, 0, 0, 0.5),
            inset 0 6px 8px rgba(255, 255, 255, 0.05);
    }
}

#benefits h2 {
    text-align: center;
    font-size: 2.0rem;
    margin-bottom: 50px;
    position: relative;
    font-family: 'Agrandir', sans-serif;
    font-weight: 700;
}

#benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.8), rgba(27, 27, 27, 0.6));
    border-radius: 2px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    /* Reduz blur em mobile */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    height: auto;
    min-height: 200px;
}

@media (min-width: 769px) {
    .benefit-item {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    transition: transform 0.25s ease, color 0.25s ease;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    color: transparent;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
    position: relative;
    z-index: 1;
    font-family: 'Agrandir', sans-serif;
    font-weight: 700;
}

.benefit-item p {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO TESTIMONIALS
   ========================================================================== */
#testimonials {
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 2;
    padding: 60px 20px 60px;
    margin-top: -50px !important;
}

#testimonials::before,
#testimonials::after {
    z-index: -1;
}

#testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

#testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.8), rgba(27, 27, 27, 0.6));
    border-radius: 2px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    /* Reduz blur em mobile */
    box-shadow: 0 0 8px rgba(31, 31, 31, 0.15);
}

@media (min-width: 769px) {
    .testimonial-card {
        box-shadow: 0 0 10px rgba(31, 31, 31, 0.2);
    }
}

.testimonial-card::before {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Agrandir', sans-serif;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonial Cards Especiais */
.testimonial-card1 {
    position: relative;
    border: 1px solid #141314;
    transition: transform 0.3s ease;
    /* Reduz blur em mobile */
    box-shadow: 0 0 6px rgba(59, 59, 59, 0.15);
    height: 180px;
    opacity: 0.9;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .testimonial-card1 {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    }
}

.testimonial-card:hover,
.testimonial-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   SEÇÃO ABOUT
   ========================================================================== */
.about {
    padding: 80px 0;
    background: var(--background);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 5px 10px -10px rgba(0, 0, 0, 0.8),
        inset 0 4px 6px rgba(255, 255, 255, 0.03);
}

/* Background com imagem do chess - MOBILE: sem fixed */
.about::before {
    opacity: 0.8;
    content: "";
    position: absolute;
    inset: 0;
    background: #111 url(/assets/chess_background.webp) center/cover no-repeat;
    z-index: -1;
}

/* DESKTOP: com fixed para efeito parallax */
@media (min-width: 769px) {
    .about::before {
        background: 
            radial-gradient(ellipse at 20% 80%, rgba(26, 26, 26, 0.7) 0%, transparent 60%),
            radial-gradient(ellipse at 90% 10%, rgba(42, 42, 42, 0.5) 0%, transparent 50%),
            #111 url(/assets/chess_background.webp) center/cover no-repeat fixed;
        box-shadow: 
            0 10px 10px -15px rgba(0, 0, 0, 0.9),
            0 10px 10px -10px rgba(0, 0, 0, 0.7),
            0 5px 5px -5px rgba(0, 0, 0, 0.5),
            inset 0 6px 8px rgba(255, 255, 255, 0.05);
    }
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ==========================================================================
   SEÇÃO CONTACT (COM ANIMAÇÕES)
   ========================================================================== */
#contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
    position: relative;
}

/* Apenas desktop mostra gradientes radiais */
@media (min-width: 769px) {
    #contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%), 
                          radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
        pointer-events: none;
    }
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-size: 40px;
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.8), rgba(27, 27, 27, 0.6));
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    /* Reduz blur em mobile */
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .form-group input,
    .form-group textarea {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

textarea {
    resize: none;
}

/* ==========================================================================
   SEÇÃO FAQ (COM ANIMAÇÕES)
   ========================================================================== */
#faq {
    background: var(--secondary);
    position: relative;
}

/* Apenas desktop mostra gradientes radiais */
@media (min-width: 769px) {
    #faq {
        background: radial-gradient(ellipse at 20% 30%, rgba(177, 177, 177, 0.1) 0%, transparent 60%), 
                    radial-gradient(ellipse at 80% 70%, rgba(29, 29, 29, 0.1) 0%, transparent 60%), 
                    var(--secondary);
    }
    
    #faq::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%), 
                          radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
        pointer-events: none;
    }
}

#faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

#faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.3), rgba(27, 27, 27, 0.2));
    border-radius: 2px;
    overflow: hidden;
    /* Reduz blur em mobile */
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

@media (min-width: 769px) {
    .faq-item {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.2), rgba(27, 27, 27, 0.1));
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-right: 20px;
    font-weight: 100;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    max-height: 300px;
    opacity: 1;
    padding: 0 20px 20px;
}

/* ==========================================================================
   ELEMENTOS DECORATIVOS - OTIMIZADOS
   ========================================================================== */
.graphic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* Grid pattern simplificado */
.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), 
                      linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Remove perspective e transform 3D desnecessários */
.grid-pattern::before {
    display: none;
}

.ribbon-line {
    position: absolute;
    height: 2px;
    width: 150%;
    opacity: 0.6;
    transform: rotate(-25deg);
    top: 30%;
    left: -25%;
    animation: waveMove 15s linear infinite;
    z-index: 1;
}

/* Otimiza animações para mobile */
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
    .ribbon-line {
        animation: none;
        opacity: 0.3;
    }
}

.ribbon-line::before, .ribbon-line::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.ribbon-line::before {
    top: -2px;
    opacity: 0.7;
    /* Remove filter: blur() desnecessário */
    filter: none;
}

.ribbon-line::after {
    top: 2px;
    opacity: 0.5;
    /* Remove filter: blur() desnecessário */
    filter: none;
}

.ribbon-line.delay-1 {
    top: 60%;
    animation-delay: 5s;
    animation-duration: 18s;
    transform: rotate(15deg);
}

.ribbon-line.delay-2 {
    top: 80%;
    animation-delay: 10s;
    animation-duration: 20s;
    transform: rotate(-10deg);
}

.ribbon-line.delay-3 {
    top: 40%;
    left: -30%;
    animation-delay: 3s;
    animation-duration: 12s;
    transform: rotate(5deg);
}

.ribbon-line.delay-4 {
    top: 70%;
    left: -20%;
    animation-delay: 8s;
    animation-duration: 17s;
    transform: rotate(-15deg);
}

.decorative-pillar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 180px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decorative-pillar img {
    height: 90%;
    width: auto;
    object-fit: cover;
    opacity: 0.85;
    margin-left: 150px;
}

.decorative-pillar-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 180px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decorative-pillar-right img {
    height: 90%;
    width: auto;
    object-fit: cover;
    opacity: 0.85;
}

#contact .container {
    position: relative;
    z-index: 3;
    margin-left: 190px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #080808;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-icon {
    color: rgba(68, 68, 68, 0.7);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-icon:hover {
    color: var(--primary);
}

/* ==========================================================================
   ANIMAÇÕES CSS - OTIMIZADAS
   ========================================================================== */
@keyframes waveMove {
    0% {
        left: -25%;
    }
    100% {
        left: 100%;
    }
}

/* Pausa animações quando não visíveis (suporte moderno) */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   RESPONSIVIDADE COMPLETA - MANTIDA
   ========================================================================== */

/* Tablets */
@media (max-width: 1024px) {
    .container, .container2 {
        width: 95%;
        padding: 0 20px;
    }
    
    #hero .container {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        padding-right: 20px;
    }
    
    .decorative-pillar {
        width: 140px;
    }
    
    #contact .container {
        margin-left: 150px;
    }
    
    .decorative-pillar-right {
        width: 140px;
    }
    
    .decorative-pillar img {
        margin-left: 100px;
    }
}


@media screen and (min-width: 351px) and (max-width: 425px) {
 .hero-content {
        margin-top: -75px !important;
    }
}




/* Tablets Pequenos e Mobile Grande */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    .botao1 {
        margin-top: -15px !important;
    }
    #hero {
        min-height: 80vh;
        padding: 30px 0;
    }
    
    #hero .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .hero-content {
        order: 2;
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
        margin-top: -30px;
    }
    
    .hero-image {
        order: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image img {
        margin-left: 0;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        text-align: center;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        text-align: center;
        max-width: 100%;
        margin: 0 auto 25px;
        padding: 0 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        min-height: 180px;
        padding: 25px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card1 {
        height: 200px !important;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text h2 {
        text-align: left;
    }
    
    .about-text p {
        text-align: left !important;
        padding: 0;
    }
    
    .about .bold-text {
        text-align: left !important;
        display: inline !important;
    }
    
    .cta-button {
        width: auto;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .cta-container0 {
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
    
    .botao1 {
        width: 95%;
        margin: 0 auto;
        margin-top: -13px;
    }
    
    .decorative-pillar {
        width: 100px;
        opacity: 0.7;
    }
    
    #contact .container {
        margin-left: 110px;
    }
    
    .decorative-pillar-right {
        width: 100px;
        opacity: 0.7;
    }
    
    /* Remove completamente ribbon-lines em mobile */
    .ribbon-line {
        display: none;
    }
    
    .container2 h2 {
        font-size: 24px !important;
    }
    
    .container h2 {
        font-size: 1.5rem !important;
    }
    
    #testimonials {
        padding: 40px 20px 40px;
    }
    
    #contact .cta-button {
        display: block;
        width: max-content;
        margin: 0 auto;
        text-align: center;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .about .cta-button {
        margin: 0;
        text-align: left;
    }
}

/* Mobile Médio */
@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
    
    .container, .container2 {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero-content, .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
  
    .about-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .benefit-item {
        min-height: 160px;
        padding: 20px 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .hero-image, .about-image {
        margin-top: 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .form-group input, .form-group textarea {
        padding: 12px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: left !important;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .footer-icons {
        gap: 15px;
    }
    
    .footer-icon {
        font-size: 1rem;
    }
    
    .decorative-pillar {
        display: none;
    }
    
    #contact .container {
        margin-left: 0;
    }
    
    .decorative-pillar-right {
        display: none;
    }
    
    .thin-text, .bold-text {
        display: block;
    }
    
    #testimonials {
        padding: 35px 15px 35px;
    }
    

}

/* Mobile Muito Pequeno */
@media (max-width: 320px) {
    #hero {
        min-height: 75vh;
        padding: 25px 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .container, .container2 {
        width: 95%;
        padding: 0 10px;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 13px;
        padding: 12px 20px;
        max-width: 240px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .form-group input, .form-group textarea {
        padding: 10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
        text-align: left !important;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .hero-content {
        margin-top: -50px;
    }
    
    #testimonials {
        padding: 30px 10px 30px;
    }
}

/* Ajustes de altura específicos */
@media (max-height: 700px) {
    #hero {
        min-height: 90vh;
    }
}

@media (max-height: 600px) {
    #hero {
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
/* ==========================================================================
   SEÇÃO PARTNERS (EMPRESAS PARCEIRAS)
   ========================================================================== */
#partners {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

/* Apenas desktop mostra gradientes radiais */
@media (min-width: 769px) {
    #partners {
        background: radial-gradient(ellipse at 20% 30%, rgba(177, 177, 177, 0.1) 0%, transparent 60%), 
                    radial-gradient(ellipse at 80% 70%, rgba(29, 29, 29, 0.1) 0%, transparent 60%), 
                    var(--secondary);
    }
    
    #partners::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%), 
                          radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
        pointer-events: none;
    }
}

#partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#partners h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#partners .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Container do carrossel */
.partners-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: 40px 0;
}

/* Carrossel principal */
.partners-carousel {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollCarousel 40s linear infinite;
    padding: 10px 0;
}



/* Slide individual */
.partner-slide {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container do logo */
.partner-logo {
    width: 100%;
    height: 100%;

    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

}

@media (min-width: 769px) {
    .partner-logo {
        
    }
}



/* Imagem dentro do logo */
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Animação do carrossel */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 10 - 30px * 10)); /* Move pelo número de slides */
    }
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO PARTNERS
   ========================================================================== */

/* Tablets */
@media (max-width: 1024px) {
    #partners h2 {
        font-size: 2.2rem;
    }
    
    .partner-slide {
        width: 130px;
        height: 130px;
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-130px * 10 - 30px * 10));
        }
    }
}

/* Tablets Pequenos e Mobile Grande */
@media (max-width: 768px) {
    #partners h2 {
        font-size: 1.8rem !important;
    }
    
    #partners .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .partners-carousel-container {
        margin: 30px 0;
    }
    
    .partner-slide {
        width: 120px;
        height: 120px;
    }
    
    .partners-carousel {
        gap: 20px;
    }
    
    .partner-logo {
        padding: 15px;
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 10 - 20px * 10));
        }
    }
}

/* Mobile Médio */
@media (max-width: 480px) {
    #partners {
        padding: 30px 0;
    }
    
    #partners h2 {
        font-size: 1.6rem !important;
        margin-bottom: 15px;
    }
    
    #partners h2::after {
        bottom: -10px;
    }
    
    #partners .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .partner-slide {
        width: 100px;
        height: 100px;
    }
    
    .partners-carousel {
        gap: 15px;
    }
    
    .partner-logo {
        padding: 12px;
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 10 - 15px * 10));
        }
    }
}

/* Mobile Muito Pequeno */
@media (max-width: 320px) {
    #partners h2 {
        font-size: 1.4rem !important;
    }
    
    .partner-slide {
        width: 90px;
        height: 90px;
    }
    
    .partners-carousel {
        gap: 12px;
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90px * 10 - 12px * 10));
        }
    }
}