/* ===========================
   Reset e Variáveis
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #d97706;
    --secondary-dark: #b45309;
    --success-color: #059669;
    --danger-color: #dc2626;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --gray-color: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-color: #374151;
    --border-color: #e5e7eb;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    --transition: all 0.3s ease;
}

html {
     overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Tipografia
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ===========================
   Botões
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-warning {
    background: var(--warning-color);
    color: var(--white);
}

.btn-warning:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ===========================
   Header
   =========================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.logo small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-color);
}

.logo-img{
    width: 180px;
    height: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary-color);
}

.nav-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

/* === Correção do YouTube Lazy Player === */

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background-color: #000;
    overflow: hidden;
}

.video-placeholder,
.video-placeholder img,
.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder img {
    object-fit: cover;
}

.video-placeholder {
    cursor: pointer;
}

/* Botão play centralizado */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    border: none;
    color: #fff;
    font-size: 3rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}




/* Movimento Section */
.movimento-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.movimento-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.movimento-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.movimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.movimento-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.movimento-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.movimento-card p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.movimento-card .feature-list {
    list-style: none;
    padding: 0;
}

.movimento-card .feature-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.movimento-card .feature-list li i {
    color: var(--success-color);
    font-size: 1.1rem;
}






/* ===========================
   Problema Section
   =========================== */
.problema {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problema-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.problema-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

.problema-icon.danger {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger-color);
}

.problema-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.problema-card p {
    color: var(--gray-color);
    margin: 0;
}

.problema-cta {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.problema-cta h3 {
    color: var(--success-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.problema-cta i {
    margin-right: 0.5rem;
}

/* ===========================
   Sobre Section
   =========================== */
.sobre {
    padding: 5rem 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.sobre-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
    box-shadow: var(--shadow-xl);
}

.sobre-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--warning-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    font-weight: 700;
}

.sobre-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sobre-badge span {
    font-size: 0.875rem;
    line-height: 1.2;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sobre-intro {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sobre-image {
  position: relative;
  width: 100%;
  max-width: 500px; /* controla o tamanho máximo da imagem */
  margin: 0 auto;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  display: block;
  object-fit: cover;
}


.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature-item h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin: 0;
}

/* ===================================
   SEÇÃO SERVIÇOS (SIMPLIFICADA - 3 CARDS)
   =================================== */
.servicos-section {
    background-color: var(--bg-light);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.servico-card.featured {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: var(--white);
    border: 3px solid var(--secondary-color);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servico-card.featured .servico-icon {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
}

.servico-icon i {
    font-size: 2rem;
    color: var(--white);
}

.servico-card.featured .servico-icon i {
    color: var(--primary-color);
}

.servico-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.servico-badge.popular {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.servico-card.featured .servico-badge {
    background-color: var(--secondary-color);
}

.servico-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.servico-card.featured .servico-title {
    color: var(--white);
}

.servico-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.servico-card.featured .servico-description {
    color: rgba(255, 255, 255, 0.95);
}

.servico-benefits {
    margin-bottom: 1.5rem;
}

.servico-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.servico-benefits i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.servico-card.featured .servico-benefits i {
    color: var(--secondary-color);
}

.servico-question {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.servico-card.featured .servico-question {
    background-color: rgba(255, 255, 255, 0.15);
    border-left-color: var(--secondary-color);
}

.servico-question i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.servico-question p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.servico-card.featured .servico-question p {
    color: var(--white);
}

.servicos-cta {
    text-align: center;
    margin-top: 3rem;

}

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}



/* ===========================
   Serviços Section Antigo
   =========================== */
.servicos {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.servico-card.destaque {
    border: 3px solid var(--primary-color);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.servico-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.servico-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.servico-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.servico-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color);
}

.servico-list i {
    color: var(--success-color);
    font-size: 1rem;
}

.servicos-cta {
    margin-top: 3rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===========================
   Depoimentos Section
   =========================== */
.depoimentos {
    padding: 5rem 0;
    background: var(--white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.depoimento-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.depoimento-info {
    flex: 1;
}

.depoimento-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.depoimento-info p {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin: 0;
}

.depoimento-rating {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.depoimento-texto {
    position: relative;
    margin-bottom: 1rem;
}

.depoimento-texto .fa-quote-left {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.depoimento-texto p {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    padding-left: 1rem;
}

.depoimento-resultado {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.875rem;
}

.depoimento-resultado i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.depoimentos-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sentenca-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.sentenca-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sentenca-link i {
    font-size: 1rem;
    color: var(--white);
}

.sentenca-placeholder {
    background: var(--gray-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.sentenca-placeholder:hover {
    background: var(--gray-color);
    transform: none;
    box-shadow: var(--shadow-sm);
}

.stat-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-box .stat-number {
    color: var(--white);
}

.stat-box .stat-label {
    color: rgba(255,255,255,0.9);
}


/* ========================================
   DEPOIMENTO EM VÍDEO - MEC GÁS
   ======================================== */

.video-depoimento {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-depoimento-header {
    margin-bottom: 60px;
    text-align: center;
}

.video-depoimento-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.video-depoimento-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.empresa-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.empresa-logo i {
    font-size: 48px;
    color: var(--secondary-color);
}

.empresa-logo h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
}

.empresa-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-item i {
    font-size: 32px;
    color: var(--primary-color);
    width: 40px;
}

.detail-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-item span {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
}

.empresa-quote {
    position: relative;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 24px;
}

.empresa-quote i {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 32px;
    color: var(--secondary-color);
    opacity: 0.3;
}

.empresa-quote p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    padding-left: 24px;
}

.empresa-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.empresa-badge i {
    font-size: 20px;
}

.video-depoimento-player {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-placeholder-depoimento {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder-depoimento:hover {
    background: linear-gradient(135deg, #1e40af, #60a5fa);
}

.video-placeholder-depoimento i {
    font-size: 80px;
    opacity: 0.9;
}

.video-placeholder-depoimento p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.video-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

.video-caption {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.video-caption i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 2px;
}

.video-caption p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.video-depoimento-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.cta-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}


/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin: 0;
}


/* ===========================
   CTA Final Section
   =========================== */
.cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--danger-color) 0%, #b91c1c 100%);
    color: var(--white);
   
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.cta-final h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.cta-benefit i {
    font-size: 1.5rem;
}

.cta-urgency {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===========================
   Contato Section
   =========================== */
.contato {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contato-intro {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contato-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contato-icon.whatsapp { background: #25d366; }
.contato-icon.phone { background: var(--primary-color); }
.contato-icon.email { background: var(--secondary-color); }
.contato-icon.location { background: var(--danger-color); }

.contato-details {
    flex: 1;
}

.contato-details h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contato-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.contato-details a:hover {
    text-decoration: underline;
}

.contato-details p {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin: 0;
}

.contato-badge {
    display: inline-block;
    background: var(--success-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.contato-note {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.contato-horario {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contato-horario h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.contato-horario i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.contato-horario p {
    font-size: 0.875rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin: 0;
}

.contato-social h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: #e4405f; }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }

.contato-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header h3 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-color);
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-top: 1rem;
}

.form-note i {
    margin-right: 0.5rem;
    color: var(--success-color);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2.5rem;
}

.footer-logo small {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}

.footer-tagline {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.75rem;
    flex: 1;
}

.badge-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--warning-color);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-links i {
    font-size: 0.75rem;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.footer-oab {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* ===========================
   WhatsApp Flutuante
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}


/* ===========================
   SISTEMA DE COOKIES (LGPD)
   =========================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--warning-color);
    animation: cookieRotate 3s ease-in-out infinite;
}

@keyframes cookieRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--secondary-color);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--success-color);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.btn-cookie-reject {
    background: var(--danger-color);
    color: var(--white);
}

.btn-cookie-reject:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-cookie-customize {
    background: var(--gray-color);
    color: var(--white);
}

.btn-cookie-customize:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

/* Modal de Cookies */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    opacity: 1;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.375rem;
}

.cookie-modal-header h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--danger-color);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cookie-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.cookie-category-info h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-color);
}

/* Switch de Cookies */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-color);
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--success-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-icon {
        font-size: 2.5rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}

/* ===========================
   PÁGINAS DE POLÍTICA
   =========================== */

.policy-page {
    padding: 6rem 0 4rem;
    background: var(--light-gray);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 16px;
}

.policy-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.policy-date {
    font-size: 0.875rem;
    opacity: 0.9;
}

.policy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.policy-highlight {
    background: var(--light-gray);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.policy-contact {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.policy-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}






/* ===========================
   Scroll to Top
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===========================
   Responsividade
   =========================== */
@media (max-width: 992px) {
    .hero-content,
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }

    /* DEPOIMENTO EM VÍDEO */

    .video-depoimento-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-depoimento-info {
    padding: 2rem;
  }

  .video-depoimento-player {
    padding: 1.5rem;
  }

  .empresa-logo h3 {
    font-size: 1.75rem;
  }

  .empresa-logo i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
    body {
    overflow-x: hidden;
}

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
         max-width: 300px; /* evita extrapolar telas pequenas */
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 2rem;
        transition: var(--transition);
        z-index: 1001;
        transform: translateX(100%); /* menu fechado */
    }
    
    .nav.active {
        transform: translateX(0); /* menu aberto */
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-toggle,
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 90px;
        right: 20px;
    }

    /* DEPOIMENTO EM VÍDEO */
    .video-depoimento {
    padding: 60px 0;
  }

  .video-depoimento-header h2 {
    font-size: 1.75rem;
  }

  .video-depoimento-header p {
    font-size: 1rem;
  }

  .video-depoimento-info {
    padding: 1.5rem;
  }

  .empresa-details {
    gap: 1rem;
  }

  .empresa-quote p {
    font-size: 0.95rem;
  }

  .video-depoimento-player video {
    max-height: 300px;
  }

  .video-caption {
    flex-direction: column;
    text-align: center;
  }

  .video-caption i {
    margin-bottom: 0.5rem;
  }

  .video-depoimento-cta {
    padding: 1.5rem;
  }

  .cta-text {
    font-size: 1.125rem;
  }

     .policy-content {
        padding: 1.5rem;
    }
    
    .policy-section ul,
    .policy-section ol {
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {
body {
    overflow-x: hidden;
}

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 300px; /* evita extrapolar telas pequenas */
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 2rem;
        transition: var(--transition);
        z-index: 1001;
        transform: translateX(100%); /* menu fechado */
    }
    
    .nav.active {
        transform: translateX(0); /* menu aberto */
    }

    .sobre-badge {
        position: static; /* já tem no seu CSS */
        margin: 1rem auto 0 auto; /* centraliza e não vaza */
    }

    .hero-content,
    .sobre-content,
    .contato-content {
        overflow: hidden; /* evita rolagem horizontal */
    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-xl {
        padding: 1rem 1.75rem;
        font-size: 1.125rem;
    }
    
    .problema-grid,
    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sobre-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }

    /* DEPOIMENTO EM VÍDEO */
    .video-depoimento-header {
    margin-bottom: 2rem;
  }

  .empresa-logo {
    flex-direction: column;
    text-align: center;
  }

  .empresa-logo h3 {
    font-size: 1.5rem;
  }

  .detail-item {
    align-items: flex-start;
  }

  .detail-item i {
    font-size: 1.25rem;
    width: auto;
  }

  .empresa-quote {
    padding: 1rem;
  }

  .empresa-quote p {
    font-size: 0.9rem;
  }

  .video-depoimento-player {
    padding: 1rem;
  }

  .video-caption p {
    font-size: 0.9rem;
  }

  .video-depoimento-cta .btn {
    width: 100%;
  }
}
