/* Estilos Gerais */
:root {
    --primary-color: #0a4d8c;
    --secondary-color: #1976d2;
    --accent-color: #ff6b00;
    --light-blue: #e3f2fd;
    --dark-blue: #002855;
    --white: #ffffff;
    --black: #212121;
    --gray: #f5f5f5;
    --dark-gray: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

section {
    padding: 80px 0;
}

.section-desc {
    font-size: 18px;
    color: var(--dark-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-contato {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-contato:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    padding: 150px 0 80px;
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.oferta-especial {
    background-color: rgba(255, 107, 0, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 25px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.oferta-badge {
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 14px;
}

.oferta-timer {
    font-weight: 600;
    font-size: 14px;
}

.exclusividade {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusividade i {
    color: var(--accent-color);
    animation: blink 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Seção Sobre */
.sobre .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sobre-content {
    flex: 1;
}

.sobre-content h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.social-proof {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.social-item {
    text-align: center;
}

.social-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-item h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

/* Seção Destaque */
.destaque {
    background: url('assets/bg-pattern.jpg') center center/cover;
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.9), rgba(0, 40, 85, 0.9));
}

.destaque-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.promocao-exclusiva {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed var(--accent-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: inline-block;
}

.promocao-tag {
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contador {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.contador-item {
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}

.contador-labels {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 5px;
    font-size: 12px;
    color: var(--light-blue);
}

.oferta-detalhes {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.oferta-detalhes p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.oferta-detalhes i {
    color: var(--accent-color);
    font-size: 18px;
}

.vagas-limitadas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 107, 0, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.vagas-limitadas i {
    color: var(--accent-color);
    font-size: 18px;
}

.destaque h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.destaque p {
    font-size: 20px;
    margin-bottom: 15px;
}

.destaque .btn-primary {
    margin-top: 30px;
}

/* Seção Serviços */
.servicos {
    background-color: var(--gray);
    text-align: center;
}

.servicos h2 {
    color: var(--primary-color);
    font-size: 36px;
}

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

.servico-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.servico-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.servico-card h3 {
    font-size: 22px;
    color: var(--primary-color);
}

.servico-card p {
    margin-bottom: 20px;
}

.servico-card ul {
    text-align: left;
    padding-left: 20px;
}

.servico-card ul li {
    margin-bottom: 10px;
}

/* Seção Como Funciona */
.como-funciona {
    text-align: center;
}

.como-funciona h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.etapas {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.etapas::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--light-blue);
    z-index: -1;
}

.etapa {
    flex: 1;
    max-width: 250px;
    position: relative;
}

.etapa-numero {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.etapa h3 {
    font-size: 20px;
    color: var(--primary-color);
}

/* Seção Resultados */
.resultados {
    background-color: var(--light-blue);
    text-align: center;
}

.resultados h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resultado-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.resultado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resultado-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resultado-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.resultado-card h3 {
    font-size: 20px;
    color: var(--primary-color);
}

/* Seção Depoimentos */
.depoimentos {
    text-align: center;
}

.depoimentos h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.depoimentos-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.depoimento {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    max-width: 45%;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.depoimento-texto::before {
    content: '"';
    font-size: 60px;
    color: var(--light-blue);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
}

.depoimento-autor {
    text-align: right;
}

.depoimento-autor strong {
    color: var(--primary-color);
}

/* Seção CTA */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Contato */
.contato {
    text-align: center;
}

.contato h2 {
    color: var(--primary-color);
    font-size: 36px;
}

.contato-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contato-form {
    flex: 2;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.contato-info {
    flex: 1;
    text-align: left;
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.whatsapp-item {
    flex-direction: column;
    align-items: flex-start;
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.whatsapp-item i {
    color: #25D366;
    font-size: 28px;
    margin-bottom: 10px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.redes-sociais h3 {
    margin-top: 30px;
    font-size: 20px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Rodapé */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: var(--light-blue);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-contact {
    color: var(--light-blue);
}

.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-contact i {
    margin-right: 10px;
    font-size: 16px;
}

.btn-whatsapp-footer {
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-whatsapp-footer i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-whatsapp-footer:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

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

/* Responsividade */
@media (max-width: 992px) {
    .hero .container,
    .sobre .container,
    .contato-container,
    .footer-content {
        flex-direction: column;
    }
    
    .hero-content,
    .sobre-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .etapas {
        flex-wrap: wrap;
    }
    
    .etapas::before {
        display: none;
    }
    
    .etapa {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 30px;
    }
    
    .etapa {
        flex: 0 0 100%;
    }
    
    .servicos-grid,
    .resultados-grid {
        grid-template-columns: 1fr;
    }
}
