/* ============================================
   DESIGN MINIMALISTA - ALIANÇA JURÍDICA
   Design limpo, moderno e focado
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Desabilitar qualquer transform que cause movimento vertical */
* {
    transform: none !important;
}

/* Permitir apenas transforms específicos que não causem movimento vertical */
.banner-btn,
.chat-toggle-btn,
button {
    transform: scale(1) !important;
}

.banner-btn:hover,
.chat-toggle-btn:hover,
button:hover {
    transform: scale(1.05) !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Prevenir overflow em todos os elementos */
* {
    max-width: 100%;
}

/* Garantir que sections e divs não causem overflow */
section, div {
    max-width: 100%;
}

section {
    overflow: hidden !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow-x: hidden;
}

/* Typography Minimalista */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Buttons Minimalistas com Rosa */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #ffffff;
    border: 2px solid #ec4899;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #db2777 0%, #9d174d 100%);
    border-color: #db2777;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ec4899;
    border: 2px solid #ec4899;
}

.btn-secondary:hover {
    background: #ec4899;
    color: #ffffff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Banner de Anúncio Top */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.3rem;
    animation: pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.banner-text {
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner-text strong {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-btn {
    background: white;
    color: #ec4899;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(1.02);
    }
}

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
    animation: none;
}

/* Header Minimalista */
.header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 900;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    height: 60px;
}

.nav-brand h2 {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

.nav-menu .btn-cta {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.nav-menu .btn-cta:hover {
    background: linear-gradient(135deg, #db2777 0%, #9d174d 100%);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Minimalista */
.hero {
    margin-top: 104px;
    padding: 25px 0 35px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 0;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid #e5e5e5;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat span {
    font-size: 0.8rem;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 14px;
    object-fit: cover;
}

/* Sections Minimalistas */
section {
    padding: 50px 0;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-title p {
    font-size: 1rem;
    color: #666;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: #ec4899;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: #ec4899;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
}

/* Footer Minimalista */
.footer {
    background: #f5f5f5;
    padding: 45px 0 25px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   CHAT WHATSAPP INTEGRADO
   ============================================ */

/* Botão Flutuante do Chat */
.chat-toggle-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-toggle-btn i {
    font-size: 28px;
    color: white;
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Janela do Chat */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Header do Chat */
.chat-header {
    background: #25D366;
    color: white;
    padding: 16px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #25D366;
}

.chat-header-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.chat-status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 0.8;
}

/* Corpo do Chat */
.chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f5f5f5;
}

.chat-date {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: white;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

/* Mensagens */
.chat-message {
    display: flex;
    margin-bottom: 16px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.sent {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
}

.chat-message.received .message-bubble {
    background: white;
    border-bottom-left-radius: 4px;
}

.chat-message.sent .message-bubble {
    background: #DCF8C6;
    border-bottom-right-radius: 4px;
}

.message-bubble p {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-line;
}

.message-time {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-top: 6px;
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.quick-reply-btn {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: #1a1a1a;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-reply-btn:hover {
    background: #f5f5f5;
    border-color: #25D366;
}

.quick-reply-btn i {
    color: #25D366;
}

/* Input do Chat */
.chat-input {
    padding: 12px;
    background: white;
    border-top: 1px solid #e5e5e5;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e5e5e5;
    padding: 10px 14px;
    border-radius: 24px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input input:focus {
    border-color: #25D366;
}

.chat-send-btn {
    background: #25D366;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-send-btn:hover {
    background: #1faa52;
    transform: scale(1.05);
}

.open-whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.2s;
    margin: 12px;
}

.open-whatsapp-btn:hover {
    background: #1faa52;
}

/* Scrollbar personalizada */
.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsivo para telas médias (tablets/laptops pequenos) */
@media (min-width: 769px) and (max-width: 1199px) {
    .top-banner-content {
        padding: 10px 20px;
        gap: 0.75rem;
    }
    
    .banner-text {
        font-size: 0.85rem;
    }
    
    .banner-btn {
        font-size: 0.8rem;
        padding: 7px 16px;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 24px !important;
    }
    
    .hero {
        padding: 20px 0 30px !important;
        min-height: auto !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        align-items: start !important;
    }
    
    .hero-text h1 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-stats {
        gap: 1.25rem !important;
        padding: 1rem 0 !important;
        margin-bottom: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .stat strong {
        font-size: 1.4rem !important;
    }
    
    .stat span {
        font-size: 0.75rem !important;
    }
    
    .hero-image {
        display: block !important;
        width: 100% !important;
    }
    
    .hero-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 450px !important;
        border-radius: 16px !important;
        object-fit: cover !important;
    }
    
    .hero-cta {
        gap: 0.65rem !important;
        margin-top: 1rem !important;
        flex-direction: column !important;
    }
    
    .hero-cta .btn,
    .hero-cta button,
    .hero-cta a {
        width: 100% !important;
        padding: 12px 24px !important;
        font-size: 0.88rem !important;
    }
    
    /* Ajustar seções com grid 2 colunas para tablets */
    section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        gap: 30px !important;
    }
    
    /* Garantir que imagens em seções mantenham tamanho consistente */
    section img[style*="width: 100%"] {
        max-height: 450px !important;
        object-fit: cover !important;
        height: auto !important;
    }
    
    section > .container > div[style*="grid-template-columns"] > div > img {
        max-height: 450px !important;
        height: auto !important;
        object-fit: cover !important;
    }
}

/* Responsivo para telas grandes */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero {
        padding: 30px 0 60px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2.5rem;
        padding: 1.75rem 0;
    }
    
    .stat strong {
        font-size: 2rem;
    }
    
    .stat span {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-height: 450px;
    }
}

/* Responsivo para telas pequenas (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .top-banner {
        position: relative;
    }
    
    .header {
        position: relative;
        top: 0;
    }
    
    .hero {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    .hero-image img {
        max-height: 400px !important;
    }
    
    section img[style*="width: 100%"] {
        max-height: 400px !important;
    }
    
    .hero-text h1 {
        font-size: 1.85rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    .stat strong {
        font-size: 1.6rem !important;
    }
    
    .stat span {
        font-size: 0.75rem !important;
    }
}

/* Responsivo para telas muito pequenas (max 479px) */
@media (max-width: 479px) {
    .top-banner {
        position: relative;
    }
    
    .header {
        position: relative;
        top: 0;
    }
    
    .hero {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    .hero-image img {
        max-height: 300px !important;
    }
    
    section img[style*="width: 100%"] {
        max-height: 300px !important;
    }
    
    .hero-stats {
        gap: 1rem !important;
    }
    
    .stat strong {
        font-size: 1.3rem !important;
    }
    
    .stat span {
        font-size: 0.65rem !important;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    /* Banner responsivo mobile */
    .top-banner {
        position: relative;
    }
    
    .top-banner-content {
        padding: 6px 12px;
        gap: 0.4rem;
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
    }
    
    .banner-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
        width: auto;
    }
    
    .banner-icon {
        font-size: 1rem;
        display: block;
    }
    
    /* Header ajustado */
    .header {
        top: 0;
        position: relative;
        margin-bottom: 0;
    }
    
    .hero {
        margin-top: 0 !important;
        padding-top: 5px !important;
    }
    
    /* Otimizações de performance mobile */
    * {
        -webkit-tap-highlight-color: rgba(236, 72, 153, 0.2);
        -webkit-touch-callout: none;
    }
    
    body {
        font-size: 0.95rem;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Tipografia mobile otimizada */
    h1 {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    
    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    h3 {
        font-size: 1.15rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }
    
    h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    /* Header mobile melhorado */
    .header {
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        padding: 0 16px;
        margin-bottom: 0;
    }
    
    .nav {
        padding: 0.4rem 0;
        height: 45px;
        gap: 16px;
    }
    
    .nav-brand h2 {
        font-size: 1rem;
        letter-spacing: -0.02em;
        flex: 1;
        min-width: 0;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 45px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        max-height: 400px;
    }
    
    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 8px 0;
        font-size: 1rem;
    }
    
    .nav-menu .btn-cta {
        margin-top: 10px;
        text-align: center;
        padding: 12px 20px;
        border-radius: 8px;
    }
    
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
        padding: 4px;
    }
    
    /* Hero mobile super otimizado */
    .hero {
        margin-top: 0 !important;
        padding: 30px 0 30px !important;
        min-height: auto;
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 1.65rem !important;
        line-height: 1.25;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.88rem !important;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.5rem !important;
        flex-wrap: nowrap !important;
        padding: 1.25rem 0 !important;
        margin-bottom: 1.25rem !important;
        justify-content: space-between !important;
    }
    
    .stat {
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    
    .stat strong {
        font-size: 1.5rem !important;
        display: block;
        font-weight: 700;
    }
    
    .stat span {
        font-size: 0.7rem !important;
        display: block;
        margin-top: 4px;
        line-height: 1.3;
    }
    
    .hero-cta {
        flex-direction: column !important;
        gap: 0.65rem !important;
        margin-top: 1.5rem;
    }
    
    .hero-cta .btn,
    .hero-cta button,
    .hero-cta a {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .hero-cta button i,
    .hero-cta a i {
        font-size: 1.1rem !important;
    }
    
    .hero-cta .btn div,
    .hero-cta button div,
    .hero-cta a div {
        text-align: left !important;
        flex: 1;
    }
    
    .hero-cta button div div:first-child,
    .hero-cta a div div:first-child {
        font-size: 0.95rem !important;
        font-weight: 700;
        margin-bottom: 1px;
    }
    
    .hero-cta button div div:last-child,
    .hero-cta a div div:last-child {
        font-size: 0.7rem !important;
        opacity: 0.9;
    }
    
    .hero-image {
        display: block !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
        order: 2 !important;
    }
    
    .hero-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 350px !important;
        border-radius: 12px !important;
        object-fit: cover !important;
    }
    
    .hero-text {
        order: 1 !important;
    }
    
    /* Sections mobile super otimizadas */
    section {
        padding: 35px 0 !important;
        border-radius: 20px;
        margin-bottom: 1.5rem;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    section * {
        max-width: 100%;
    }
    
    section > .container {
        overflow-x: hidden;
        width: 100%;
    }
    
    section:first-of-type {
        margin-top: 0;
    }
    
    /* Prevenir overflow em todos os elementos */
    section > .container > *,
    section > .container > * > *,
    div[style*="display: grid"],
    div[style*="display: flex"] {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .section-title {
        margin-bottom: 1.75rem;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .section-title p {
        font-size: 0.9rem !important;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* Buttons mobile melhorados */
    .btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
        width: 100%;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .btn-large {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
    
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .feature-card {
        padding: 1.4rem !important;
        border-radius: 12px !important;
    }
    
    .feature-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.4rem;
    }
    
    .feature-card p {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    .feature-icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .feature-icon i {
        font-size: 1.3rem !important;
    }
    
    /* Chat mobile otimizado */
    .chat-window {
        width: 100% !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        height: 100dvh !important;
        border-radius: 0 !important;
        max-height: 100dvh !important;
    }
    
    .chat-header {
        border-radius: 0 !important;
        padding: 14px 16px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .chat-toggle-btn {
        right: 16px !important;
        bottom: 20px !important;
        width: 58px !important;
        height: 58px !important;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4) !important;
    }
    
    .chat-toggle-btn i {
        font-size: 26px !important;
    }
    
    .chat-input {
        padding: 14px 16px !important;
        border-radius: 0 !important;
        background: #f8f9fa;
    }
    
    .chat-input input {
        font-size: 16px !important;
        padding: 12px 16px !important;
    }
    
    .chat-body {
        padding: 16px 12px !important;
    }
    
    .message-bubble {
        max-width: 85% !important;
        font-size: 0.9rem !important;
    }
    
    .quick-reply-btn {
        padding: 12px 14px !important;
        font-size: 0.9rem !important;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Responsivo para seções com grid 2 colunas */
    section > .container > div[style*="grid-template-columns: 1fr 1fr"],
    section > .container > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Ajustar imagens nas seções para manter tamanho consistente */
    section img[style*="width: 100%"] {
        max-height: 350px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }
    
    section > .container > div[style*="grid-template-columns"] > div > img {
        max-height: 350px !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    section > .container > div > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    section > .container > div > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Fluxo responsivo */
    #processo div[style*="display: flex; justify-content: space-between"] {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    #processo div[style*="position: absolute"] {
        display: none !important;
    }
    
    #processo div[style*="flex: 0"] {
        display: none !important;
    }
    
    #processo div[style*="flex: 1"] {
        flex: none !important;
        width: 100% !important;
    }
    
    /* Botões informativos responsivos */
    .btn > div {
        font-size: 0.85rem !important;
    }
    
    .btn > div > div:first-child {
        font-weight: 600;
    }
    
    .btn > div > div:last-child {
        font-size: 0.7rem !important;
        margin-top: 2px;
    }
    
    /* Videos responsivos */
    video {
        max-height: 250px !important;
    }
    
    /* Seção de marketing mobile - Cards de benefícios */
    section div[style*="display: flex; align-items: start; gap: 1rem"] {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    section div[style*="width: 50px; height: 50px"] {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
    }
    
    section div[style*="width: 50px; height: 50px"] i {
        font-size: 1.2rem !important;
    }
    
    section h4[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    section p[style*="font-size: 0.95rem"] {
        font-size: 0.85rem !important;
    }
    
    /* Cards de testemunhos mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* FAQ mobile */
    .faq-item {
        padding: 1.25rem;
    }
    
    /* Botões hero com ícones - mobile */
    .hero-cta button,
    .hero-cta a {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 24px !important;
    }
    
    .hero-cta button div,
    .hero-cta a div {
        text-align: center !important;
    }
    
    /* Todos os botões com divs internas */
    button[style*="display: inline-flex"] div div:first-child,
    a[style*="display: inline-flex"] div div:first-child {
        font-size: 0.95rem !important;
    }
    
    button[style*="display: inline-flex"] div div:last-child,
    a[style*="display: inline-flex"] div div:last-child {
        font-size: 0.75rem !important;
    }
    
    /* Grids de 7 colunas (soluções) */
    div[style*="grid-template-columns: repeat(7, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Círculos de ícones do processo */
    div[style*="width: 120px; height: 120px"] {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 1rem auto !important;
    }
    
    div[style*="width: 120px; height: 120px"] i {
        font-size: 2rem !important;
    }
    
    /* Centralizar textos do processo */
    #processo h3,
    #processo p {
        text-align: center !important;
    }
    
    /* Imagens */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Vídeos */
    video {
        height: 200px !important;
        max-height: 200px !important;
    }
    
    /* Seção marketing - ajustes finos */
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.5rem !important;
    }
    
    section[style*="background: linear-gradient"] p[style*="font-size: 1.1rem"] {
        font-size: 0.95rem !important;
    }
    
    /* Cards de diferencias */
    div[style*="border-radius: 12px; overflow: hidden; border"] {
        margin-bottom: 1rem;
    }
    
    /* Ajuste de espaçamentos gerais */
    section h2 {
        font-size: 1.5rem !important;
    }
    
    section h3 {
        font-size: 1.15rem !important;
    }
    
    section p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
}

/* Mobile muito pequeno */
@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.4rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        text-align: center;
        width: 100%;
    }
    
    .btn {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
    
    .section-title h2 {
        font-size: 1.3rem !important;
    }
    
    section {
        padding: 25px 0 !important;
    }
    
    video {
        height: 180px !important;
        max-height: 180px !important;
    }
    
    .feature-card {
        padding: 1.25rem !important;
    }
}

/* Animações suaves */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.hero-content,
.section-title {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll interno */
html {
    scroll-padding-top: 80px;
}

/* Links com cor rosa */
a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #be185d;
}

/* Estatísticas - Estilo Base */
.stats-container {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-radius: 12px;
}

.stat-card i {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0.5rem 0;
}

.stat-card span {
    color: #666;
}

/* Carrossel de Cards de Estatísticas no Mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    .stats-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
        margin: 2rem 0 !important;
    }
    
    .stat-card {
        width: 100% !important;
        padding: 1.5rem 1rem !important;
    }
    
    .stat-card i {
        font-size: 2rem !important;
    }
    
    .stat-card strong {
        font-size: 1.75rem !important;
    }
}
