/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-light: #94a3b8;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-dark: #0f172a;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float a svg {
    width: 32px;
    height: 32px;
    fill: white;
    flex-shrink: 0;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float a svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float a svg {
        width: 25px;
        height: 25px;
    }
}
/* Hero Section */
.hero {
    min-height: 50vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/banner-mobile.jpg?v=2') no-repeat center center !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
    margin-top: 60px;
    min-height: 100%;
}
    .hero-text {
        background: transparent;
        padding: 1.5rem;
        border-radius: var(--border-radius-lg);
        max-width: 70%;
        text-align: center;
        margin: 0 auto 0 0;
        margin-left: 15%;
    }
.hero-text {
    background: transparent;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    max-width: 400px;
    text-align: center;
    margin: 0 auto 0 0;
    margin-left: 10%;
}
.hero-content h1 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #f1f5f9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-button {
    margin-top: 2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary {
    background: #10b981;
    color: white;
    box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
/* Why Act Section */
.why-act {
    padding: 80px 0;
    background: var(--bg-secondary) url('../img/hacker.png') no-repeat center center;
    background-size: cover;
    color: var(--text-primary);
    position: relative;
}
.why-act::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.why-act .container {
    position: relative;
    z-index: 2;
}
.why-act h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.why-act p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.cta-button {
    text-align: center;
    margin-top: 2rem;
}
/* Scams Section */
.scams {
    padding: 80px 0;
    background: #f8fafc url('../img/hacker2.png') no-repeat center center;
    background-size: cover;
    color: #1e293b;
    position: relative;
}
.scams::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.scams .container {
    position: relative;
    z-index: 2;
}
.scams h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.scams > .container > p {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}
.scam-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.scam-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--danger-color);
    position: relative;
    transition: var(--transition);
}
.scam-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}
.scam-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    margin-top: 1rem;
    text-transform: uppercase;
}
.scam-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}
.scam-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.scam-example {
    background: #fef3c7;
    border-radius: var(--border-radius);
    padding: 1rem;
    border-left: 4px solid var(--warning-color);
    margin-bottom: 1rem;
}
.scam-example p {
    margin: 0;
    color: #92400e;
}
.scam-example em {
    font-style: italic;
    font-weight: 500;
}
.scam-note {
    font-style: italic;
    color: #64748b;
    margin-top: 1rem;
    text-align: center;
}
.scam-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.scam-image {
    text-align: center;
    flex: 1;
    min-width: 400px;
    max-width: 500px;
}
.scam-image-mobile {
    display: none;
    text-align: center;
    margin-top: 1.5rem;
}
.scam-image-mobile img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: none;
}
.scam-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.image-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}
.golpe-exemplo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.golpe-exemplo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}
.scams-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.scams-conclusion p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}
/* About Section */
.about {
    padding: 80px 0;
    background: var(--primary-color) url('../img/sobre_nos.jpg') no-repeat center center;
    background-size: cover;
    color: var(--text-primary);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.about .container {
    position: relative;
    z-index: 2;
}
.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.about-image {
    text-align: center;
}
.advogado-foto {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    border: 4px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.advogado-foto:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}
.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.about h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.diferenciais {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.diferencial h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.diferencial p {
    color: var(--text-secondary);
    line-height: 1.6;
}
/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '•••';
    position: absolute;
    top: 20px;
    left: 50px;
    width: 120px;
    height: 90px;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    border-radius: 25px 25px 25px 5px;
    opacity: 0.9;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
}
.testimonials::after {
    content: '•••';
    position: absolute;
    top: 100px;
    right: 60px;
    width: 100px;
    height: 80px;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    border-radius: 25px 25px 25px 5px;
    opacity: 0.9;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #3b82f6;
    font-weight: bold;
}
.testimonials .container {
    position: relative;
    z-index: 2;
}
.testimonials .container::before {
    content: '•••';
    position: absolute;
    bottom: 40px;
    left: 30px;
    width: 80px;
    height: 70px;
    background: linear-gradient(145deg, #f59e0b, #d97706);
    border-radius: 20px 20px 20px 5px;
    opacity: 0.9;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: bold;
}
.testimonials .container::after {
    content: '•••';
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 90px;
    height: 75px;
    background: linear-gradient(145deg, #10b981, #059669);
    border-radius: 22px 22px 22px 5px;
    opacity: 0.9;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: white;
    font-weight: bold;
}
.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.testimonials-container {
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.testimonial {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}
.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.testimonial-content {
    margin-bottom: 1.5rem;
}
.testimonial-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-author h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}
.testimonial-author span {
    color: #94a3b8;
    font-size: 0.875rem;
}
/* Testimonials Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}
.testimonial-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.testimonial-btn:hover {
    background: #059669;
    transform: scale(1.1);
}
.testimonial-btn:active {
    transform: scale(0.95);
}
.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}
.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot:hover {
    background: #94a3b8;
}
.testimonial-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}
/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #8b4513 url('../img/perguntas_frequentes.png') no-repeat center center;
    background-size: contain;
    color: #1e293b;
    position: relative;
    min-height: 600px;
}
.faq .container {
    position: relative;
    z-index: 2;
}
.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary-color);
    color: white;
}
.faq-question:hover {
    background: #1e40af;
}
.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}
.faq-question i {
    color: white;
    transition: var(--transition);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
}
.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-info i {
    color: var(--accent-color);
    font-size: 1.25rem;
}
/* Correção do ícone WhatsApp na seção contato */
.contact-info i.fa-brands.fa-whatsapp {
    background: white !important;
    color: #25D366 !important;
    border-radius: 50% !important;
    padding: 4px !important;
    width: 26px !important;
    height: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 8px !important;
    font-size: 16px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}
/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}
.footer p {
    color: var(--text-light);
}
/* Responsividade */
@media (min-width: 769px) {
    .hero {
        background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/banner-desktop.jpg?v=2') no-repeat center center !important;
        background-size: cover !important;
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.2rem;
    }
   
    .hero {
        padding: 20px 0 15px;
        min-height: 25vh;
        background:
            linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
            url('../img/banner_logo_mobile.png') no-repeat center top !important;
        background-size: cover !important;
        background-position: center top !important;
    }
   
    .scam-cards {
        grid-template-columns: 1fr;
    }
   
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
   
    .testimonials-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
   
    .testimonial-btn {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
   
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
   
    .scam-images {
        display: none;
    }
   
    .scam-image-mobile {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 1.5rem auto 0;
    }
   
    .scam-image-mobile img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
    }
   
    .scam-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        overflow: visible;
    }
   
    .scam-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
    }
   
    .golpe-exemplo {
        width: 100%;
        height: auto;
    }
   
   
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
   
    .advogado-foto {
        width: 150px;
        height: 150px;
        object-position: center 20%;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
   
    .hero {
        padding: 15px 0 10px;
        min-height: 20vh;
        background:
            linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
            url('../img/banner_logo_mobile.png') no-repeat center top !important;
        background-size: cover !important;
        background-position: center top !important;
    }
   
    .hero-content h1 {
        font-size: 1.1rem;
    }
   
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
   
    .scam-image-mobile {
        max-width: 100%;
    }
}
/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
/* Scroll suave */
html {
    scroll-behavior: smooth;
}
/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Foco visível para navegação por teclado */
.btn:focus,
.faq-question:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
