/* =============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--cor-primaria);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--cor-destaque);
}

/* Utilitários */
.text-primary { color: var(--cor-primaria); }
.text-center { text-align: center; }
.text-md-right { text-align: right; }
.mt-3 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-xl-3 {
    padding: 0 15px;
    width: 100%;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--cor-primaria);
    color: var(--cor-branco);
}

.btn-primary:hover {
    background: var(--cor-erro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--cor-branco);
    border: 2px solid var(--cor-branco);
}

.btn-outline-white:hover {
    background: var(--cor-branco);
    color: var(--cor-primaria);
}

.btn-outline-primary {
    background: transparent;
    color: var(--cor-primaria);
    border: 2px solid var(--cor-primaria);
}

.btn-outline-primary:hover {
    background: var(--cor-primaria);
    color: var(--cor-branco);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Ícones */
.whatsapp-icon,
.phone-icon,
.btn-arrow {
    width: 20px;
    height: 20px;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cor-branco);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--cor-fundo);
    border-top-color: var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   COOKIE NOTICE
   ============================================= */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    margin: 0;
    margin-right: 20px;
}

.cookie-notice a {
    color: var(--cor-destaque);
    text-decoration: underline;
}

.cookie-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* =============================================
   HEADER E MENU
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cor-branco);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--cor-secundaria);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--cor-secundaria);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--cor-texto);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cor-primaria);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cor-secundaria);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/banner.jpeg') center/cover;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9) 0%, rgba(192, 57, 43, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-shape svg {
    width: 100%;
    height: auto;
    fill: var(--cor-fundo);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in { animation: fadeInUp 1s ease; }
.animate-fade-in-delay { animation: fadeInUp 1s ease 0.2s; animation-fill-mode: both; }
.animate-fade-in-delay-2 { animation: fadeInUp 1s ease 0.4s; animation-fill-mode: both; }
.animate-fade-in-delay-3 { animation: fadeInUp 1s ease 0.6s; animation-fill-mode: both; }

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-banner {
    background: var(--cor-primaria);
    padding: 20px 0;
    overflow: hidden;
}

.promo-slider {
    display: flex;
    animation: slide 20s linear infinite;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    white-space: nowrap;
    padding: 0 50px;
}

.promo-icon {
    font-size: 24px;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =============================================
   SECTIONS GERAIS
   ============================================= */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cor-texto);
    opacity: 0.8;
}

/* =============================================
   SOBRE SECTION
   ============================================= */
.sobre-section {
    background: var(--cor-branco);
}

.sobre-content {
    margin-bottom: 60px;
}

.sobre-image {
    position: relative;
    margin-bottom: 30px;
}

.sobre-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--cor-primaria);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.badge-text {
    font-size: 0.9rem;
}

.sobre-text h3 {
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.sobre-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-primaria);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cor-texto);
}

.valores-list {
    list-style: none;
}

.valores-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--cor-sucesso);
    flex-shrink: 0;
}

.sobre-diferenciais {
    margin-top: 60px;
}

.diferencial-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--cor-fundo);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: var(--cor-branco);
}

.diferencial-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--cor-primaria);
}

.diferencial-card h4 {
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

/* =============================================
   SERVIÇOS SECTION
   ============================================= */
.servicos-section {
    background: var(--cor-fundo);
}

.servicos-grid {
    margin-bottom: 60px;
}

.servico-card {
    background: var(--cor-branco);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.servico-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    color: var(--cor-primaria);
}

.servico-titulo {
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

.servico-descricao {
    color: var(--cor-texto);
    margin-bottom: 20px;
    flex-grow: 1;
}

.servico-lista {
    list-style: none;
    margin-bottom: 30px;
}

.servico-lista li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.btn-servico {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-primaria);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-servico:hover {
    gap: 15px;
    color: var(--cor-destaque);
}

.servicos-cta {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-erro) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   DEPOIMENTOS SECTION
   ============================================= */
.depoimentos-section {
    background: var(--cor-branco);
}

.depoimentos-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.depoimentos-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.depoimento-card {
    min-width: 100%;
    padding: 40px;
    background: var(--cor-fundo);
    display: none;
}

.depoimento-card.active {
    display: block;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.depoimento-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-nome {
    color: var(--cor-secundaria);
    margin-bottom: 5px;
}

.depoimento-cargo {
    color: var(--cor-texto);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.depoimento-rating {
    display: flex;
    gap: 5px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #FFD700;
}

.depoimento-content {
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--cor-primaria);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.depoimento-texto {
    font-style: italic;
    color: var(--cor-texto);
    line-height: 1.8;
    padding-left: 30px;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cor-texto);
    opacity: 0.3;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 30px;
    border-radius: 6px;
    background: var(--cor-primaria);
    opacity: 1;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cor-branco);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: var(--cor-primaria);
    color: white;
}

.carousel-control.prev {
    left: -25px;
}

.carousel-control.next {
    right: -25px;
}

.carousel-control svg {
    width: 24px;
    height: 24px;
}

.carousel-touch-hint {
    display: none;
    text-align: center;
    margin-top: 20px;
    color: var(--cor-texto);
    opacity: 0.6;
    font-size: 0.9rem;
}

.depoimentos-cta {
    text-align: center;
    margin-top: 60px;
}

.depoimentos-cta h3 {
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

/* =============================================
   CONTATO SECTION
   ============================================= */
.contato-section {
    background: var(--cor-fundo);
}

.contato-info h3,
.contato-form h3 {
    color: var(--cor-secundaria);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    color: var(--cor-secundaria);
    margin-bottom: 10px;
}

.info-content p {
    margin: 0;
    color: var(--cor-texto);
}

.contato-form {
    background: var(--cor-branco);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--cor-secundaria);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: start;
    gap: 10px;
}

.form-check-input {
    margin-top: 5px;
}

.form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    animation: spin 1s linear infinite;
}

.contato-mapa {
    margin-top: 60px;
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
}

.footer-top {
    padding: 60px 0 40px;
}

.widget-title {
    color: var(--cor-branco);
    margin-bottom: 25px;
}

.footer-widget p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--cor-primaria);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cor-branco);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--cor-destaque);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--cor-branco);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.copyright,
.developed-by {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: var(--cor-primaria);
    display: inline-block;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* =============================================
   BOTÃO VOLTAR AO TOPO
   ============================================= */
.btn-topo {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.btn-topo.show {
    opacity: 1;
    visibility: visible;
}

.btn-topo:hover {
    background: var(--cor-erro);
    transform: translateY(-5px);
}

.btn-topo svg {
    width: 24px;
    height: 24px;
}

/* =============================================
   PÁGINAS INTERNAS (Política e Termos)
   ============================================= */
.page-header {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-erro) 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-content {
    padding: 80px 0;
    background: var(--cor-branco);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--cor-secundaria);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: var(--cor-secundaria);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cor-branco);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 0;
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .col-lg-2 { width: 50%; }
    .col-lg-3 { width: 50%; }
    .col-lg-4 { width: 100%; }
    .col-lg-5 { width: 100%; }
    .col-lg-6 { width: 100%; }
    .col-lg-7 { width: 100%; }
    
    .carousel-control {
        display: none;
    }
    
    .carousel-touch-hint {
        display: block;
    }
    
    .sobre-badge {
        position: static;
        margin: 20px auto;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .col-md-4,
    .col-md-6 {
        width: 100%;
    }
    
    .text-md-right {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
    
    .contato-form {
        padding: 25px;
    }
    
    .promo-item {
        padding: 0 30px;
    }
}

@media (min-width: 768px) {
    .col-md-4 { width: 33.33%; }
    .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.66%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33%; }
    .col-lg-5 { width: 41.66%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33%; }
}

@media (min-width: 1200px) {
    .col-xl-3 { width: 25%; }
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
} 