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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Animações */
[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animation="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

/* Botões */
.btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Botão CTA principal */
.btn-cta {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    padding: 1.5rem 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}
.logo span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f1f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}
.hero-content h1 span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    background: #111;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}
.card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}
.card h3 {
    color: #667eea;
    margin: 1rem 0;
}
.card p {
    color: #b0b0b0;
}

/* Estatísticas */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Depoimentos */
.testimonials {
    padding: 100px 0;
    background: #111;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #667eea;
}
.quote {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.quote::before {
    content: '"';
    font-size: 2rem;
    color: #667eea;
    line-height: 1;
}
.quote::after {
    content: '"';
    font-size: 2rem;
    color: #667eea;
    line-height: 1;
}
.client-name {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.client-position {
    color: #667eea;
    font-size: 0.9rem;
}

/* Processo */
.process {
    padding: 100px 0;
    background: #0a0a0a;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.step:hover {
    transform: translateY(-10px);
}
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}
.step h3 {
    color: #667eea;
    margin-bottom: 1rem;
}
.step p {
    color: #b0b0b0;
}

/* Garantias */
.guarantees {
    padding: 100px 0;
    background: #111;
}
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.guarantee {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.guarantee:hover {
    transform: translateY(-5px);
}
.guarantee i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}
.guarantee h3 {
    color: #667eea;
    margin-bottom: 1rem;
}
.guarantee p {
    color: #b0b0b0;
}

/* Cases */
.cases {
    padding: 100px 0;
    background: #0a0a0a;
}
.case {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #667eea;
}
.case:hover {
    transform: translateY(-5px);
}
.case h3 {
    color: #667eea;
    margin-bottom: 1rem;
}
.case p {
    color: #b0b0b0;
    margin: 1rem 0;
}
.case strong {
    color: #fff;
}
.result {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 1.5rem 0;
}
.value {
    color: #888;
    font-size: 0.9rem;
}

/* CTA */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1f 100%);
    text-align: center;
}
.cta-urgency {
    margin-bottom: 2rem;
}
.urgency-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-100px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}
.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.contact-btn {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 180px;
}
.contact-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
.contact-btn.whatsapp {
    border-color: #25d366;
}
.contact-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}
.contact-btn.phone {
    border-color: #667eea;
}
.contact-btn.phone:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}
.contact-btn i {
    font-size: 1.5rem;
    color: inherit;
}
.contact-btn.whatsapp i {
    color: #25d366;
}
.contact-btn.phone i {
    color: #667eea;
}
.contact-btn span {
    font-weight: 600;
    font-size: 1rem;
}
.contact-btn small {
    opacity: 0.7;
    font-size: 0.8rem;
}
.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 2rem;
}
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}
#form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #667eea;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background: #050505;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}
.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    padding: 0.25rem 0;
    color: #b0b0b0;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}
.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}
.contact-info i {
    color: #667eea;
    width: 16px;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .card, .case {
        padding: 2rem;
    }
    
    /* Botão menor em mobile */
    .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    /* Botão CTA principal em mobile */
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Header mobile */
    .header {
        padding: 1rem 0;
    }
    .header-container {
        gap: 1rem;
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    
    /* Estatísticas mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Depoimentos mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Processo mobile */
    .process-steps {
        grid-template-columns: 1fr;
    }
    .step {
        padding: 1.5rem;
    }
    
    /* Garantias mobile */
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    .guarantee {
        padding: 1.5rem;
    }
    
    /* Contact options mobile */
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    .contact-btn {
        min-width: 250px;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .social-links {
        justify-content: center;
    }
}

/* Página de Privacidade */
.privacy-policy {
    padding: 120px 0 60px;
    background: #0a0a0a;
    min-height: 100vh;
}
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
}
.privacy-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.intro {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 2rem;
}
.intro p {
    margin: 0;
    font-size: 1.1rem;
}
.section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.last-section {
    border-bottom: none;
}
.section h2 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}
.section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.section li {
    margin: 0.5rem 0;
    color: #b0b0b0;
}
.section strong {
    color: #fff;
}
.contact-rights {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-top: 1rem;
    text-align: center;
}
.contact-info-policy {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}
.contact-info-policy p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-info-policy i {
    color: #667eea;
    width: 16px;
}
.back-to-site {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.back-to-site .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Privacy Mobile */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 40px;
    }
    .privacy-content {
        padding: 0 1rem;
    }
    .privacy-content h1 {
        font-size: 2rem;
    }
    .section {
        margin-bottom: 2rem;
    }
    .intro,
    .contact-info-policy {
        padding: 1rem;
    }
}

/* Página de Agradecimento */
.thank-you-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0f0f1f 0%, #1a1a2e 100%);
    min-height: 100vh;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.success-icon {
    font-size: 4rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thank-you-message strong {
    color: #4ade80;
    font-weight: 600;
}



/* Próximos Passos */
.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #667eea;
}

.steps-list {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.2rem;
    color: white;
}

.step-text h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-text p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

/* Informações Adicionais */
.additional-info {
    margin: 4rem 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-card p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

/* Contatos de Emergência */
.emergency-contact {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ff6b6b;
}

.emergency-contact h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-align: center;
}

.emergency-contact > p {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.emergency-contact .contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-contact .contact-btn {
    min-width: 160px;
}

.contact-btn.email {
    border-color: #f59e0b;
}

.contact-btn.email:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
}

.contact-btn.email i {
    color: #f59e0b;
}

/* Thank You Mobile */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 100px 0 40px;
    }
    
    .thank-you-content {
        padding: 0 1rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .next-steps h2 {
        font-size: 1.6rem;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .emergency-contact {
        padding: 1.5rem;
    }
    
    .emergency-contact .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-contact .contact-btn {
        min-width: 250px;
    }
    

}