/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

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

/* Header Desktop */
.header {
    background-color: rgba(50, 50, 50, 0.75);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav a {
    color: #1a1a2e;
}

.header.scrolled .nav a:hover {
    color: #ff8c00;
}

.header.scrolled .nav-dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.header.scrolled .nav-dropdown-menu a {
    color: #333;
}

.header.scrolled .nav-dropdown-menu a:hover {
    color: #ff8c00;
    background: #f5f5f5;
}

/* Header Mobile */
.header-mobile {
    display: none;
    background-color: #ffffff;
    padding: 10px 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.header-mobile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-mobile .logo-img {
    height: 56px;
    width: auto;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s;
}

/* ========== Mobile Slide-in Navigation ========== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.mobile-nav-open .header-mobile {
    visibility: hidden;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-header .logo-img {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: border-color 0.2s, color 0.2s;
}

.mobile-nav-close:hover {
    border-color: #ff8c00;
    color: #ff8c00;
}

.mobile-nav-links {
    padding: 16px 0;
}

.mobile-nav-links>a {
    display: block;
    padding: 18px 24px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links>a:hover {
    background: #f9f9f9;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background: none;
    width: 100%;
    text-align: left;
}

.mobile-nav-dropdown-toggle:hover {
    background: #f9f9f9;
}

.mobile-nav-dropdown-toggle .arrow {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s;
}

.mobile-nav-dropdown-toggle.open .arrow {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.mobile-nav-submenu.open {
    max-height: 800px;
}

.mobile-nav-submenu a {
    display: block;
    padding: 14px 24px 14px 40px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-submenu a:hover {
    background: #f5f5f5;
}

/* Hero Mobile Image */
.hero-mobile-img {
    width: 100%;
    height: auto;
    display: block;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 65px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff8c00;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 2px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 200;
    margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00 !important;
}

.btn-whatsapp-header {
    background-color: #1a8d3e;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
}

/* Desktop: imagem completa */
.hero-desktop {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero-desktop img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile: colunas separadas (oculto no desktop) */
.hero-mobile {
    display: none;
}

/* Coluna Esquerda (Laranja) - apenas mobile */
.hero-left {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight-orange {
    color: white;
}

.btn-whatsapp-hero {
    background-color: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Coluna Direita (Preta) - apenas mobile */
.hero-right {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-right {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-yellow {
    color: #ffd700;
}

.hero-subtitle {
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Badge - mobile */
.footer-badge-mobile {
    background-color: #ff8c00;
    padding: 15px;
    text-align: center;
    display: none;
}

.footer-badge-mobile p {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.badge-highlight {
    color: #1a1a1a;
    font-size: 18px;
}

/* Seção Diferenciais */
.features {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: white;
    stroke: white;
}

.feature-icon.no-bg {
    background-color: transparent;
    padding: 0;
}

.feature-icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.feature-title {
    font-size: 40px;
    font-weight: 900;
    color: #0f1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.feature-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

/* Seção Info: Trabalhamos de forma rápida */
.info-section {
    background-color: #1a1a1a;
    padding: 80px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.info-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

.info-benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-text {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

.btn-whatsapp-info {
    background-color: #1a8d3e;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-info:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Seções de Conteúdo (imagem + texto) */
.content-section {
    background-color: #1a1a1a;
    padding: 80px 20px;
}

.content-section.dark {
    background-color: #111;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-container.reverse {
    direction: ltr;
}

.content-image {
    width: 100%;
}

.image-placeholder-box {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder-box span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

.image-placeholder-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.content-title {
    font-size: 32px;
    font-weight: 900;
    color: #ff8c00;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Carrossel de Logos */
.logos-carousel-section {
    background: #111;
    padding: 60px 20px;
    overflow: hidden;
    border-top: none;
}

.logos-carousel-header {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.logos-carousel-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.logos-carousel-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.logo-slide {
    flex-shrink: 0;
    width: 250px;
    height: 120px;
    background: #ffffff;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-slide img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Seção Mais Chances */
.more-chances-section {
    padding: 80px 20px;
    background-color: white;
}

.more-chances-container {
    max-width: 1200px;
    margin: 0 auto;
}

.more-chances-title {
    font-size: 36px;
    font-weight: 800;
    color: #ff6b00;
    /* Laranja da imagem */
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.more-chances-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.more-chances-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.more-chances-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* Same gap as text columns */
    align-items: start;
}

.more-chances-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 350px;
}

.more-chances-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Seção Estatísticas */
.stats-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    color: #ff8c00;
    stroke: #ff8c00;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #0f1a2e;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f1a2e;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Seção Depoimentos */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f1a2e;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 40px;
    color: #ff8c00;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #ff8c00;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    color: #0f1a2e;
}

.author-info span {
    font-size: 12px;
    color: #999;
}

/* Footer */
.site-footer {
    background-color: #0f1a2e;
    padding: 60px 20px 0;
    color: #ccc;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* MEC Badge */
.mec-badge {
    margin-top: 20px;
    display: inline-block;
}

.mec-badge-img {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
}

/* Site Seguro Image */
.site-seguro-img {
    max-width: 180px;
    height: auto;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #ff8c00;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-bottom p {
    font-size: 13px;
    color: #ffffff;
}

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: rgba(15, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: #ff8c00;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: white;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25), 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
}

.floating-whatsapp .whatsapp-icon {
    width: 22px;
    height: 22px;
}

.floating-whatsapp .status-dot {
    width: 9px;
    height: 9px;
    background-color: #a8e06c;
    border-radius: 50%;
    margin-left: 2px;
    box-shadow: 0 0 4px rgba(168, 224, 108, 0.6);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.35), 0 6px 24px rgba(0, 0, 0, 0.35);
}

@keyframes pulseWhatsapp {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7);
    }
}

/* Responsividade */

/* Telas médias-grandes */
@media (max-width: 1024px) {

    /* No mobile: ocultar desktop, mostrar mobile */
    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
        padding-top: 56px;
    }

    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .footer-badge-mobile {
        display: block;
    }

    .nav {
        display: none;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-title {
        font-size: 30px;
    }

    .info-container,
    .content-container,
    .more-chances-content,
    .more-chances-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .content-container.reverse {
        direction: ltr;
    }

    .more-chances-title {
        font-size: 28px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .info-title {
        font-size: 28px;
    }
}

/* Tablets e celulares */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title,
    .hero-title-right {
        font-size: 26px;
    }

    .hero-left,
    .hero-right {
        padding: 35px 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-title {
        font-size: 26px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-icon-img {
        width: 90px;
        height: 90px;
    }

    .info-section,
    .content-section,
    .more-chances-section,
    .stats-section,
    .testimonials-section {
        padding: 50px 16px;
    }

    .info-title {
        font-size: 24px;
    }

    .content-title {
        font-size: 24px;
    }

    .more-chances-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .more-chances-column p {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-title {
        font-size: 18px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        margin-bottom: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 40px 16px 0;
    }

    .footer-col-title {
        margin-bottom: 12px;
    }

    .logos-carousel-section {
        padding: 40px 16px;
    }

    .logos-carousel-title {
        font-size: 22px;
    }

    .logo-slide {
        width: 180px;
        height: 90px;
    }

    .floating-whatsapp {
        padding: 12px 18px;
        font-size: 13px;
        bottom: 16px;
        right: 16px;
    }

    .image-placeholder-box {
        height: 250px;
    }

    .more-chances-img-box {
        max-height: 280px;
    }

    .scroll-top-btn {
        position: static;
        margin-right: 15px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {

    .hero-title,
    .hero-title-right {
        font-size: 22px;
    }

    .btn-whatsapp-header {
        padding: 10px 18px;
        font-size: 13px;
    }

    .stat-number {
        font-size: 32px;
    }

    .more-chances-title {
        font-size: 20px;
    }

    .testimonials-title {
        font-size: 20px;
    }

    .info-title {
        font-size: 20px;
    }

    .content-title {
        font-size: 20px;
    }

    .feature-title {
        font-size: 22px;
    }
}

/* ========== Modal WhatsApp ========== */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 340px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}


.whatsapp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.whatsapp-modal-close:hover {
    transform: scale(1.1);
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-modal-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    flex-shrink: 0;
}

.whatsapp-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-modal-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-modal-title strong {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.whatsapp-modal-title span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
}

.whatsapp-modal-body {
    padding: 25px 20px;
    background: #f5f5f5;
}

.whatsapp-message {
    background: white;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.whatsapp-modal-footer {
    padding: 20px;
    background: white;
}

.whatsapp-modal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-modal-button .whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Responsivo */
@media (max-width: 480px) {
    .whatsapp-modal {
        right: 10px;
        bottom: 90px;
    }

    .whatsapp-modal-content {
        width: calc(100vw - 20px);
        max-width: 340px;
        border-radius: 16px;
    }

    .whatsapp-modal-header {
        padding: 20px 16px;
    }

    .whatsapp-modal-avatar {
        width: 50px;
        height: 50px;
    }

    .whatsapp-modal-title strong {
        font-size: 16px;
    }

    .whatsapp-modal-title span {
        font-size: 13px;
    }

    .whatsapp-message {
        font-size: 14px;
        padding: 12px 15px;
    }

    .whatsapp-modal-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}