/* Estilos Gerais */
:root {
    --primary-color: #2c5282;
    --primary-dark: #1a365d;
    --primary-light: #4299e1;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    --dark-color: #1a202c;
    --gray-color: #718096;
    --light-gray: #e2e8f0;
    --white-color: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8fafc;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--white-color);
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: var(--white-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.separator {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 15px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    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;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-color);
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

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

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

.btn-contato:hover {
    background-color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background-image: url('https://images.pexels.com/photos/1117452/pexels-photo-1117452.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white-color);
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

/* Page Banner */
.page-banner {
    height: 300px;
    background-image: url('https://images.pexels.com/photos/1117452/pexels-photo-1117452.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white-color);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 91px; /* altura do header */
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
}

/* Sobre */
.sobre {
    padding: 100px 0;
}

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

.sobre-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sobre-features {
    margin: 25px 0;
}

.sobre-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sobre-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    background-color: #f1f5f9;
}

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

.servico-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

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

.servico-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 82, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.servico-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Projetos */
.projetos {
    padding: 100px 0;
}

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

.projeto-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.projeto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.projeto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.projeto-card:hover .projeto-overlay {
    transform: translateY(0);
}

.projeto-card:hover img {
    transform: scale(1.1);
}

.projeto-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.projeto-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* CTA */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.cta .primary-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.cta .primary-btn:hover {
    background-color: var(--light-gray);
}

.cta .secondary-btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

.cta .secondary-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 20px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links h3, .footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

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

.footer-links ul li a {
    color: #cbd5e0;
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.newsletter-form .btn:hover {
    background-color: var(--primary-dark);
}

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

.footer-bottom p {
    margin-bottom: 5px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: var(--transition);
    opacity: 0.8;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    opacity: 1;
}

/* Programa de Fidelidade */
.fidelidade-section {
    padding: 100px 0;
}

.fidelidade-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.fidelidade-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fidelidade-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.fidelidade-niveis {
    margin-bottom: 80px;
}

.fidelidade-niveis h3, .fidelidade-beneficios h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.nivel-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.nivel-header {
    padding: 30px;
    text-align: center;
    color: var(--white-color);
}

.nivel-header i {
    font-size: 40px;
    margin-bottom: 15px;
}

.nivel-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--white-color);
}

.nivel-header.bronze {
    background-color: #cd7f32;
}

.nivel-header.prata {
    background-color: #c0c0c0;
}

.nivel-header.ouro {
    background-color: #ffd700;
}

.nivel-body {
    padding: 30px;
    background-color: var(--white-color);
}

.nivel-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.nivel-body ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

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

.beneficio-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

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

.beneficio-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 82, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.beneficio-card h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fidelidade-cadastro {
    text-align: center;
    margin-top: 80px;
}

.fidelidade-cadastro h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cadastro-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Depoimentos */
.depoimentos {
    padding: 100px 0;
    background-color: #f1f5f9;
}

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

.depoimento-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.depoimento-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-stars {
    margin-bottom: 15px;
    color: #f59e0b;
}

.depoimento-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.depoimento-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.depoimento-info {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Termos e Política */
.termos-section, .privacidade-section {
    padding: 100px 0;
}

.termos-content, .privacidade-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
}

.termos-sidebar, .privacidade-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.termos-sidebar h3, .privacidade-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.termos-sidebar ul li, .privacidade-sidebar ul li {
    margin-bottom: 10px;
}

.termos-section h3, .privacidade-section h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.termos-section ul, .privacidade-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.termos-section ul li, .privacidade-section ul li {
    margin-bottom: 10px;
}

.termos-footer, .privacidade-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

/* Contato */
.contato-section {
    padding: 100px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contato-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(44, 82, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.contato-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contato-text p {
    margin-bottom: 0;
}

.contato-social {
    margin-top: 40px;
}

.contato-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.social-icon:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-5px);
}

.contato-form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contato-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 82, 130, 0.2);
}

.form-policy {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-policy input {
    margin-right: 10px;
}

.contato-whatsapp {
    text-align: center;
}

.contato-whatsapp h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mapa-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.mapa-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .sobre-content, .fidelidade-intro, .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .termos-content, .privacidade-content {
        grid-template-columns: 1fr;
    }
    
    .termos-sidebar, .privacidade-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    nav {
        position: fixed;
        top: 71px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 71px);
        background-color: var(--white-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 4px;
        width: 100%;
    }
    
    .hero-buttons, .cta-buttons, .cadastro-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn, .cta-buttons .btn, .cadastro-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .sobre-content, .fidelidade-intro, .contato-grid {
        gap: 30px;
    }
    
    .depoimento-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}