/* --- GERAL E VARIÁVEIS --- */
:root {
    --cyan: #00AEEF;
    --magenta: #EC008C;
    --yellow: #FFF200;
    --black: #212121;
    --white: #FFFFFF;
    --gray: #f4f4f4;
    --text-color: #333;
    --font-family: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text-color); background-color: var(--white); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--black); }
p { margin: 10px 0; color: #555; }
a { text-decoration: none; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.8rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* --- BOTÕES --- */
.btn { display: inline-block; padding: 14px 35px; border-radius: 50px; font-weight: 700; transition: all 0.3s ease; text-align: center; cursor: pointer; border: 2px solid transparent; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--magenta); color: var(--white); border-color: var(--magenta); }
.btn-primary:hover { background-color: #d8007e; transform: translateY(-3px); }
.btn-secondary { background-color: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-secondary:hover { background-color: #e6d900; transform: translateY(-3px); }
.btn-outline { background-color: transparent; color: var(--cyan); border-color: var(--cyan); }
.btn-outline:hover { background-color: var(--cyan); color: var(--white); }

/* --- CABEÇALHO --- */
.header { background-color: var(--white); border-bottom: 1px solid #eee; padding: 15px 0; position: sticky; top: 0; width: 100%; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 80px; }
.nav-menu { display: flex; list-style: none; gap: 40px; }
.nav-link { color: var(--black); font-weight: 700; transition: color 0.3s ease; text-transform: uppercase; font-size: 0.9rem; }
.nav-link:hover { color: var(--magenta); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--black); transition: all 0.3s ease-in-out; }

/* --- HERO SECTION --- */
.hero-section { text-align: center; padding: 120px 0; background: var(--gray); }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-content h1 { font-size: 3.8rem; font-weight: 800; text-transform: uppercase; }
.hero-content .highlight-phrase { font-size: 1.5rem; font-weight: 700; color: var(--magenta); margin: 20px 0; }
.hero-content .subtitle { font-size: 1.1rem; margin-bottom: 40px; }

/* --- FEATURES SECTION --- */
.features-section {
    background-color: #fffde7; /* Novo fundo amarelo claro */
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { text-align: center; }
.feature-card i { font-size: 3rem; color: var(--cyan); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }

/* --- PRODUCTS SECTION --- */
.products-section {
    background-color: var(--white); /* Novo fundo branco */
    padding-bottom: 120px;
}
/* --- PRODUCTS SECTION (NOVO FORMATO BANNER) --- */
.products-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espaçamento entre os banners */
}

.product-banner {
    display: flex;
    align-items: center;
    background-color: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.product-banner:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Regra para alternar a imagem para a direita */
.product-banner.reverse {
    flex-direction: row-reverse;
}

.banner-image {
    flex: 0 0 45%; /* Define a largura da área da imagem */
    align-self: stretch; /* Faz a imagem ocupar toda a altura */
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha a área sem distorcer */
    display: block;
}

.banner-content {
    flex: 1; /* Ocupa o espaço restante */
    padding: 40px 50px;
}

.banner-content h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.2rem;
    color: var(--magenta);
    font-weight: 700;
    margin-bottom: 30px;
}

.product-price strong {
    font-size: 1.8rem;
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works-section { padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center; }
.step-card span { display: block; width: 60px; height: 60px; line-height: 60px; border-radius: 50%; background-color: var(--yellow); color: var(--black); font-size: 1.8rem; font-weight: 800; margin: 0 auto 20px; }
.step-card h4 { font-size: 1.3rem; margin-bottom: 10px; }

/* --- CTA SECTION --- */
.cta-section { padding: 80px 0; background-color: var(--black); color: var(--white); text-align: center; }
.cta-section h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 15px; }
.cta-section p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; color: #ccc; }

/* --- FOOTER --- */
.footer { background-color: var(--white); padding: 50px 0; text-align: center; }
.footer-logo { height: 120px; margin-bottom: 20px; }
.footer-content p { margin-bottom: 8px; font-weight: 700; }
.footer-content a { color: var(--magenta); font-weight: 700; }
.footer-bottom { border-top: 1px solid #ddd; padding-top: 20px; margin-top: 30px; font-size: 0.9rem; color: #888; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .section-title h2 { font-size: 2.2rem; }
    .features-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 91px; flex-direction: column; background-color: var(--white); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 20px 0; }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 1rem 0; }
    .navbar .btn { display: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-content h1 { font-size: 2.8rem; }
    .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .features-grid, .products-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .highlight-phrase { font-size: 1.2rem; }
}
/* --- ESTILOS DO MODAL DE ORÇAMENTO --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 2000; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-container { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); max-width: 500px; width: 90%; position: relative; transform: translateY(-20px); transition: transform 0.3s ease; }
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-close-btn { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2rem; color: #aaa; cursor: pointer; transition: color 0.3s ease; }
.modal-close-btn:hover { color: var(--black); }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h3 { font-size: 1.8rem; color: var(--black); margin-bottom: 5px; }
.modal-header p { color: #666; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: #555; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-family); font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.2); }
.full-width { width: 100%; }