/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Cores principais */
:root {
    --primary-color: #2CB67D;
    --primary-dark: #24a169;
    --secondary-color: #128C7E;
    --accent-color: #34B7F1;
    --text-dark: #2c3e50;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 182, 125, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 182, 125, 0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(44, 182, 125, 0.4);
    text-align: center;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 182, 125, 0.5);
}

.btn-header {
    padding: 12px 24px;
    background: var(--primary-color);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--primary-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-color);
}

.logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--primary-color);
}

.menu-mobile {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 120px 0 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.4;
}

.hero-description {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 20px;
}

.hero-cta {
    text-align: left;
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Icons */
.hero-icons {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: flex-start;
}

.hero-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: transform 0.3s ease;
}

.hero-icon:hover {
    transform: translateY(-3px);
}

.icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    z-index: -1;
}

.icon-circle.green {
    background: linear-gradient(135deg, #2CB67D 0%, #22a06b 50%, #1e8f5f 100%);
}

.icon-circle.blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563eb 50%, #1d4ed8 100%);
}

.icon-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-icon span {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.whatsapp-chat {
    height: 100%;
    background: linear-gradient(to bottom, #075e54 0%, #128c7e 100%);
}

.chat-header {
    background: #075e54;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-header i {
    font-size: 24px;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.message.received {
    background: #ffffff;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.sent {
    background: #dcf8c6;
    color: #333;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message .time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    display: block;
}

/* Problema Section */
.problema {
    padding: 80px 0;
    background: white;
}

.problema-content h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.problema-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problema-item:hover {
    transform: translateY(-5px);
}

.problema-item i {
    font-size: 48px;
    color: var(--danger-color);
    margin-bottom: 20px;
}

.problema-item h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.problema-item p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Solução Section */
.solucao {
    padding: 80px 0;
    background: var(--bg-light);
}

.solucao-content h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.solucao-subtitle {
    font-size: 24px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 600;
}

.solucao-demo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.demo-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Funcionalidades Section */
.funcionalidades {
    padding: 80px 0;
    background: white;
}

.funcionalidades h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.funcionalidade {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.funcionalidade:hover {
    transform: translateY(-5px);
}

.func-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.func-icon i {
    font-size: 36px;
    color: white;
}

.funcionalidade h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.funcionalidade p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.funcionalidade ul {
    list-style: none;
}

.funcionalidade li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.funcionalidade li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background: var(--bg-light);
}

.beneficios h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.beneficio:hover {
    transform: translateY(-5px);
}

.beneficio i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.beneficio h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.beneficio p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: white;
}

.depoimentos h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.depoimento {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.depoimento-content {
    padding: 40px;
}

.depoimento-content i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.depoimento-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.autor strong {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.autor span {
    color: var(--text-gray);
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* Preço Section */
.preco {
    padding: 80px 0;
    background: var(--bg-light);
}

.preco h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.preco-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.preco-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.preco-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    text-align: center;
}

.preco-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.moeda {
    font-size: 24px;
    font-weight: 600;
}

.valor {
    font-size: 64px;
    font-weight: 700;
}

.periodo {
    font-size: 20px;
    font-weight: 500;
}

.preco-desc {
    font-size: 16px;
    opacity: 0.9;
}

.preco-features {
    padding: 40px;
}

.preco-features h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.preco-features ul {
    list-style: none;
}

.preco-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 16px;
}

.preco-features i {
    color: var(--success-color);
    font-size: 18px;
}

.preco-cta {
    padding: 0 40px 40px;
    text-align: center;
}

.preco-cta p {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.garantia {
    background: var(--bg-light);
    padding: 25px 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.garantia i {
    font-size: 24px;
    color: var(--success-color);
    margin-bottom: 10px;
}

.garantia p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h3 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgencia {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.urgencia-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.urgencia-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.cta-garantia {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Popup de Captura */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #333;
}

.popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2CB67D;
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 182, 125, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
}

#leadForm .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .popup-content {
        padding: 25px 20px;
    }
    
    .popup-content h2 {
        font-size: 1.3rem;
        padding-right: 10px;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-info p {
    opacity: 0.8;
    font-size: 16px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    opacity: 0.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .menu {
        display: none;
    }
    
    .menu-mobile {
        display: block;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Altura do header */
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 10px 0;
        z-index: 999;
    }

    .menu.active a {
        padding: 15px 20px;
        text-align: center;
        width: 100%;
    }

    .menu.active .btn-header {
        margin: 10px 20px 0;
        text-align: center;
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .hero-icons {
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-icon {
        flex-direction: column;
        text-align: center;
        align-items: center;
        flex: 1;
        min-width: 80px;
    }
    
    .icon-circle {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .hero-icon span {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        padding: 15px;
        border-radius: 25px;
    }
    
    .phone-screen {
        border-radius: 15px;
    }
    
    .chat-header {
        padding: 15px;
        font-size: 14px;
    }
    
    .chat-header i {
        font-size: 20px;
    }
    
    .chat-messages {
        padding: 15px;
        gap: 12px;
        height: calc(100% - 70px);
    }
    
    .message {
        max-width: 85%;
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.3;
        border-radius: 12px;
        text-align: left;
    }
    
    .message.received {
        border-bottom-left-radius: 4px;
    }
    
    .message.sent {
        border-bottom-right-radius: 4px;
    }
    
    .message .time {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .problema-content h2,
    .solucao-content h2,
    .funcionalidades h2,
    .beneficios h2,
    .depoimentos h2,
    .preco h2,
    .faq h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .problemas-grid,
    .funcionalidades-grid,
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .solucao-demo {
        grid-template-columns: 1fr;
    }
    
    .demo-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-urgencia {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 450px;
        padding: 12px;
        border-radius: 20px;
    }
    
    .phone-screen {
        border-radius: 12px;
    }
    
    .chat-header {
        padding: 12px;
        font-size: 13px;
    }
    
    .chat-header i {
        font-size: 18px;
    }
    
    .chat-messages {
        padding: 12px;
        gap: 10px;
        height: calc(100% - 60px);
    }
    
    .message {
        max-width: 90%;
        padding: 8px 10px;
        font-size: 11px;
        line-height: 1.2;
        border-radius: 10px;
        text-align: left;
    }
    
    .message.received {
        border-bottom-left-radius: 3px;
    }
    
    .message.sent {
        border-bottom-right-radius: 3px;
    }
    
    .message .time {
        font-size: 9px;
        margin-top: 3px;
    }
    
    .preco-valor .valor {
        font-size: 48px;
    }
}

/* ==========================================
   POLÍTICA DE PRIVACIDADE
   ========================================== */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Privacy Policy Main */
.privacy-policy {
    padding: 60px 0;
    background: white;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.policy-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 400;
}

.policy-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px 24px;
    border-radius: 25px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.policy-date i {
    color: var(--primary-color);
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 30px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

/* Policy List */
.policy-list {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.policy-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 182, 125, 0.1);
    border-color: var(--primary-color);
}

.policy-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.policy-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.policy-item p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Commitment List */
.commitment-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.commitment-letter {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.commitment-text p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Policy Footer */
.policy-footer {
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.policy-contact h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-contact p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 0;
    }
    
    .policy-header h1 {
        font-size: 36px;
    }
    
    .policy-subtitle {
        font-size: 18px;
    }
    
    .policy-section h2 {
        font-size: 26px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .policy-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .policy-item i {
        font-size: 20px;
    }
    
    .commitment-item {
        gap: 15px;
    }
    
    .commitment-letter {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .policy-footer {
        padding: 30px 20px;
        margin-top: 60px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
}
