/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0A1128;
}

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

/* Tipografia */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ECF0F1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo h2 {
    color: #00FFFF;
    font-size: 2rem;
    margin: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: #ECF0F1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #00FFFF;
}

/* Botões */
.cta-button, .cta-button-primary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
}

.cta-button:hover {
    background: #00FFFF;
    color: #0A1128;
}

.cta-button-primary {
    background: linear-gradient(135deg, #007BFF, #00FFFF);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-background.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8), rgba(44, 62, 80, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-title {
    background: linear-gradient(135deg, #ffffff, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ECF0F1;
}

/* Seções */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
}

/* Problema/Solução */
.problem-solution {
    background: linear-gradient(135deg, #2C3E50, #34495E);
}

.problems-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.problems h3, .solution h3 {
    color: #00FFFF;
    margin-bottom: 1.5rem;
}

.problems ul {
    list-style: none;
    padding: 0;
}

.problems li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problems li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.solution p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Serviços */
.services {
    background: #0A1128;
}

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

.service-card {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(96%) saturate(6143%) hue-rotate(174deg) brightness(101%) contrast(101%);
}

.service-card h3 {
    color: #00FFFF;
    margin-bottom: 1rem;
}

/* Benefícios */
.benefits {
    background: linear-gradient(135deg, #2C3E50, #34495E);
}

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

.benefit-card {
    background: rgba(10, 17, 40, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00FFFF;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.benefit-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Depoimentos */
.testimonials {
    background: #0A1128;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #00FFFF;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ECF0F1;
}

.testimonial-author strong {
    color: #00FFFF;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #BDC3C7;
    font-size: 0.9rem;
}

/* CTA Final */
.final-cta {
    background: linear-gradient(135deg, #007BFF, #00FFFF);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.final-cta .cta-button-primary {
    background: #ffffff;
    color: #007BFF;
}

.final-cta .cta-button-primary:hover {
    background: #ECF0F1;
}

/* Formulário de Contato */
.contact {
    background: #0A1128;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #00FFFF;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ECF0F1;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(10, 17, 40, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #2C3E50;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: #00FFFF;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #BDC3C7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ECF0F1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00FFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-bottom p {
    color: #BDC3C7;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .problems-solutions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.benefit-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

