/* --- GERAL E VARIÁVEIS --- */
:root {
    --dark-blue: #2A2A72;
    --purple-gradient: #3c1e71;
    --cyan: #4ECCA3;
    --text-color: #333;
    --text-light: #f4f4f4;
    --bg-color: #FFFFFF;
    --bg-light-gray: #f9f9f9;
    --font-family: 'Poppins', 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(--bg-color); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { color: var(--dark-blue); line-height: 1.2; font-weight: 600; }
p { margin: 10px 0; color: #555; }
a { text-decoration: none; color: var(--cyan); }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; text-align: center; cursor: pointer; border: 2px solid transparent; text-transform: uppercase; font-size: 0.9rem; }
.btn-primary { background-color: var(--cyan); color: #fff; border-color: var(--cyan); box-shadow: 0 4px 15px rgba(78, 204, 163, 0.4); }
.btn-primary:hover { background-color: #45b894; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(78, 204, 163, 0.5); }
.btn-outline { background-color: transparent; color: var(--dark-blue); border: 2px solid var(--dark-blue); }
.btn-outline:hover { background-color: var(--dark-blue); color: #fff; }
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-title p { max-width: 600px; margin: 0 auto; color: #666; }

/* --- CABEÇALHO --- */
.header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px); 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; transition: transform 0.3s ease; }
.nav-logo img:hover { transform: scale(1.05); }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-link { color: var(--text-color); font-weight: 600; transition: color 0.3s ease; }
.nav-link:hover { color: var(--cyan); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--dark-blue); transition: all 0.3s ease-in-out; }

/* --- HERO SECTION --- */
.hero-section { color: var(--text-light); padding: 140px 0; text-align: center; background: linear-gradient(135deg, rgba(42, 42, 114, 0.95), rgba(60, 30, 113, 0.95), rgba(78, 204, 163, 0.95)), url('https://www.toptal.com/designers/subtlepatterns/uploads/circuit-board.png'); background-size: cover; position: relative; }
.hero-content h1 { font-size: 3.5rem; font-weight: 700; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; margin: 20px 0 40px; color: #f0f0f0; max-width: 700px; margin-left: auto; margin-right: auto; }
.powered-by { display: block; margin-top: 25px; font-weight: 600; color: #fff; opacity: 0.9; }

/* --- SOLUTIONS SECTION --- */
.solutions-section { background-color: var(--bg-color); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.solution-card { background-color: #fff; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; border-top: 4px solid var(--cyan); }
.solution-card:hover { transform: translateY(-10px); box-shadow: 0 10px 35px rgba(0,0,0,0.1); }
.card-icon { width: 80px; height: 80px; margin: 0 auto 25px; background: linear-gradient(135deg, var(--dark-blue), var(--cyan)); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 2.5rem; }
.solution-card h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* --- ESTILOS PARA A SEÇÃO 'EM BREVE' --- */
.upcoming-title { text-align: center; margin-top: 80px; margin-bottom: 40px; }
.upcoming-title h4 { font-size: 1.5rem; font-weight: 600; color: var(--dark-blue); position: relative; display: inline-block; }
.upcoming-title h4::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--cyan); }
.solution-card.is-upcoming { border-top-color: #ccc; position: relative; overflow: hidden; }
.solution-card.is-upcoming .card-icon { background: #e9ecef; color: #adb5bd; }
.upcoming-badge { position: absolute; top: 15px; right: -45px; background-color: var(--dark-blue); color: #fff; padding: 5px 40px; font-size: 0.8rem; font-weight: 700; transform: rotate(45deg); text-transform: uppercase; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

/* --- FEATURES SECTION --- */
.features-section { background: linear-gradient(180deg, var(--bg-light-gray) 0%, #fff 100%); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.feature-item { text-align: center; }
.feature-item i { font-size: 3rem; color: var(--dark-blue); margin-bottom: 15px; transition: transform 0.3s ease; }
.feature-item:hover i { transform: scale(1.1) rotate(-5deg); color: var(--cyan); }
.feature-item h4 { font-size: 1.2rem; margin-bottom: 5px; }

/* --- PRICING SECTION --- */
.pricing-section { background-color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.pricing-card { background-color: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); text-align: center; transition: transform 0.3s ease; position: relative; border: 2px solid #eee; }
.pricing-card:hover { transform: scale(1.05); }
.pricing-card.popular { border-color: var(--cyan); transform: scale(1.05); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.pricing-card h3 { font-size: 1.5rem; }
.price { font-size: 3rem; font-weight: 700; color: var(--dark-blue); margin: 15px 0; }
.price sup { font-size: 1.5rem; font-weight: 600; }
.price span { font-size: 1rem; color: #777; font-weight: 400; }
.sessions { font-weight: 600; color: var(--dark-blue); margin-bottom: 25px; }
.pricing-card ul { list-style: none; margin-bottom: 30px; text-align: left; }
.pricing-card ul li { margin-bottom: 10px; color: #555; }
.pricing-card ul i { color: var(--cyan); margin-right: 10px; }
.pricing-card .btn { width: 100%; }

/* --- CTA SECTION --- */
.cta-section { background-color: var(--dark-blue); color: var(--text-light); text-align: center; }
.cta-content h2 { color: #fff; font-size: 2.5rem; }
.cta-content p { max-width: 600px; margin: 15px auto 30px; font-size: 1.1rem; color: #ddd; }
.cta-btn { transform: scale(1.1); }
.cta-btn:hover { transform: scale(1.15) translateY(-3px); }

/* --- FOOTER --- */
.footer { background-color: #fff; color: var(--text-color); padding: 60px 0 20px; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 150px; margin-bottom: 15px; }
.footer-col h4 { color: var(--dark-blue); margin-bottom: 20px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #555; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--cyan); }
.footer-col p { color: #555; }
.social-icons a { color: var(--dark-blue); font-size: 1.5rem; margin-right: 15px; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--cyan); }
.footer-bottom { text-align: center; border-top: 1px solid #eee; padding-top: 20px; }
.footer-bottom p { font-size: 0.9rem; color: #777; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } .features-grid { grid-template-columns: repeat(2, 1fr); } .nav-menu { gap: 20px; } }
@media (max-width: 768px) { .nav-menu { position: fixed; left: -100%; top: 80px; flex-direction: column; background-color: #fff; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding-bottom: 20px; } .nav-menu.active { left: 0; } .nav-item { margin: 1rem 0; } .nav-link { font-size: 1.2rem; } .header .btn-outline { 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; } .solutions-grid { grid-template-columns: 1fr; } .pricing-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-icons { margin-top: 20px; } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } .section-title h2, .cta-content h2 { font-size: 2rem; } .hero-content h1 { font-size: 2.2rem; } }

/* --- ESTILOS DO MODAL E FORMULÁRIO --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(42, 42, 114, 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(--dark-blue); }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h3 { font-size: 1.8rem; color: var(--dark-blue); 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[type="text"], .form-group input[type="email"], .form-group input[type="tel"] { 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 input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(78, 204, 163, 0.2); }
.full-width { width: 100%; padding: 15px; font-size: 1rem; }
#form-status { text-align: center; margin-top: 15px; font-weight: 600; }

/* --- Estilo para o campo de Mensagem (Textarea) --- */
.form-group textarea { width: 100%; min-height: 150px; 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; resize: vertical; }
.form-group textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(78, 204, 163, 0.2); }