/* ===== NOVA PALETA DE CORES E DESIGN MODERNO ===== */

/* Importando Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* Variáveis CSS - Paleta Expressiva Pressure Wash & Seal */
:root {
    /* Cores Principais - Expressando Limpeza e Transformação */
    --primary-color: #243447;        /* Azul Perolado Escuro */
    --secondary-color: #E76F51;      /* Brick Orange Vibrante */
    --accent-color: #F7F9FC;         /* Off-White neutro */
    
    /* Cores Expressivas do Serviço */
    --water-blue: #4A90E2;           /* Azul água para elementos de limpeza */
    --clean-blue: #5DADE2;           /* Azul claro para transformação */
    --fresh-mint: #58D68D;           /* Verde menta para renovação */
    --pressure-yellow: #F7DC6F;      /* Amarelo para energia e poder */
    --seal-gray: #85929E;            /* Cinza para sealing/proteção */
    
    /* Cores de Texto */
    --text-primary: #3A3A3A;         /* Cinza escuro */
    --text-secondary: #6C757D;       /* Cinza médio */
    --text-light: #FFFFFF;           /* Branco */
    
    /* Cores de Fundo */
    --bg-primary: #FFFFFF;           /* Branco puro */
    --bg-secondary: #F7F9FC;         /* Off-white */
    --bg-dark: #243447;              /* Azul escuro */
    --bg-water: linear-gradient(135deg, #4A90E2 0%, #5DADE2 100%);  /* Gradiente água */
    --bg-clean: linear-gradient(135deg, #58D68D 0%, #4A90E2 100%);  /* Gradiente limpeza */
    
    /* Tipografia */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaçamentos */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(36, 52, 71, 0.1);
    --shadow-medium: 0 4px 20px rgba(36, 52, 71, 0.15);
    --shadow-heavy: 0 8px 30px rgba(36, 52, 71, 0.2);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== HEADER MODERNO ===== */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-header {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.cta-header:hover {
    background: #d85a3f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== HERO SECTION REDESENHADA ===== */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: #d85a3f;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 16px 32px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    gap: 30px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--text-light);
    font-size: 16px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--text-light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.hero-badge-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.hero-badge-text {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SEÇÕES REDESENHADAS ===== */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CARDS DE SERVIÇOS MODERNOS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(36, 52, 71, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Ícones específicos para cada serviço */
.service-card:nth-child(1) .service-icon {
    background: var(--bg-water);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: var(--bg-clean);
    box-shadow: 0 8px 25px rgba(88, 214, 141, 0.3);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--seal-gray), var(--primary-color));
    box-shadow: 0 8px 25px rgba(133, 146, 158, 0.3);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d85a3f);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

/* Efeito de ondas para ícones de água */
.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: var(--text-light);
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.step-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== SEÇÃO DE TRANSFORMAÇÕES ANTES/DEPOIS ===== */
.transformations {
    background: var(--bg-water);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.transformations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 40px;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.transformations .section-title {
    color: var(--text-light);
}

.transformations .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.transformation-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.transformation-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.transformation-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.transformation-item:hover .transformation-image img {
    transform: scale(1.05);
}

.transformation-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pressure-yellow);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformation-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.transformation-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===== SEÇÃO DE EQUIPAMENTOS PROFISSIONAIS ===== */
.equipment-section {
    background: var(--bg-secondary);
    position: relative;
}

.equipment-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.equipment-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.equipment-features {
    list-style: none;
    margin: 30px 0;
}

.equipment-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.equipment-features i {
    color: var(--water-blue);
    font-size: 18px;
    width: 20px;
}

.equipment-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.equipment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.equipment-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--fresh-mint);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

/* Wrapper define a área e corta o excesso */
.equipment-media{
  position: relative;
  flex: 1;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;               /* Corta o que passar (adeus faixas) */
  box-shadow: var(--shadow-heavy);
  background: #000;
}

/* Vídeo preenche e dá um leve zoom + desloca um pouco pra cima */
.equipment-video{
  position: absolute;
  inset: 0;                       /* ocupa tudo */
  width: 100%;
  height: 100%;
  object-fit: cover;              /* cobre toda a área */
  object-position: center 42%;    /* empurra um pouco pra cima (40–45%) */
  transform: scale(1.25);         /* leve zoom pra sumir as faixas */
  transform-origin: center;
}

/* opcional: no mobile deixa ocupar toda a largura */
@media (max-width: 768px){
  .equipment-video{ max-width: 100%; }
}


/* ===== GALERIA MODERNA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(36, 52, 71, 0.9));
    color: var(--text-light);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-location {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials {
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonials .section-title {
    color: var(--text-light);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 18px;
    margin: 0 2px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FORMULÁRIO MODERNO ===== */
.quote-section {
    background: var(--bg-secondary);
}

.quote-form {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    max-width: 600px;
    margin: 60px auto 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 18px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.form-submit:hover {
    background: #d85a3f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 15px;
}

/* ===== FOOTER MODERNO ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d85a3f;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA STICKY ===== */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 1; /* Garante que ele comece visível */
    transform: translateY(0); /* Garante que ele não venha de baixo */
}

.sticky-cta:hover {
    background: #d85a3f;
    transform: translateY(-3px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quote-form {
        padding: 30px 20px;
        margin: 40px 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== UTILITÁRIOS ===== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}



/* ===== TESTIMONIALS APRIMORADOS COM ESTRELAS AMARELAS ===== */
.testimonials {
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(74, 144, 226, 0.1) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.testimonials .section-title {
    color: var(--text-light);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    z-index: 2;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.testimonial-stars .star-filled {
    color: #FFD700;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    from { filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3)); }
    to { filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.6)); }
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 0 30px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--pressure-yellow);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.5;
}

.testimonial-author {
    margin-top: 30px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pressure-yellow);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--pressure-yellow);
    border-color: var(--pressure-yellow);
    box-shadow: 0 0 15px rgba(247, 220, 111, 0.5);
}

.testimonial-dots .dot:hover {
    border-color: var(--pressure-yellow);
    transform: scale(1.2);
}

/* ===== RESPONSIVIDADE PARA NOVAS SEÇÕES ===== */
@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .equipment-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .equipment-image {
        order: -1;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }
}

.benefit-icon svg {
  stroke: #ffffff !important;
}

/* AJUSTES MOBILE ESPECÍFICOS */
@media (max-width: 768px){

  /* 1) Mais respiro no topo da HERO (header é fixo) */
  .hero{
    /* empurra a hero pra baixo do header + sobra */
    padding: 140px 0 56px; /* ajuste fino depois se quiser */
  }

  /* 2) Botão do HEADER menor no mobile */
  .cta-header{
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1;
    border-radius: 12px;
  }

  /* 2) Botões da HERO menores no mobile */
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary{
    padding: 12px 18px;
    font-size: 14px;
  }

  /* 3) Menos respiro vertical geral e na seção do vídeo */
  .section{
    padding: 56px 0; /* reduz do 80px pra 56px no mobile */
  }
  .equipment-section{
    padding-top: 40px;
    padding-bottom: 32px;
  }
  .equipment-showcase{
    gap: 24px;
    margin-top: 24px; /* era 60px, reduz pra não “sobrar” espaço */
  }

/* Vídeo: manter corte das bordas e enquadramento agradável */
  .equipment-media{
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    background: #000;
  }
  .equipment-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%; /* sobe um pouco o quadro */
    transform: scale(1.12);
  }
}

/* ===== STYLES FOR PAVER TINTING & COLOR-SEALING SECTION (FIXED) ===== */
.tinting-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Aumenta a coluna de texto em 20% */
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.tinting-content p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem; /* Aumentado o tamanho da fonte do parágrafo */
}

/* Re-using the .equipment-features class for the list */
.tinting-content .equipment-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.tinting-content .equipment-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Specific fix for the icons */
.tinting-content .equipment-features i {
    color: var(--water-blue);
    flex-shrink: 0; 
}

.tinting-content .equipment-features span {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6; 
}

.tinting-content .equipment-features strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tinting-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 500px; 
}

.tinting-image img {
    width: 100%;
    height: 100%; /* Faz a imagem preencher a altura do container */
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}

.tinting-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .tinting-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tinting-image {
        order: -1; /* Places the image before the text on mobile */
        height: 350px; /* Altura ajustada para telas menores */
    }

    .tinting-content .equipment-features {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Ajuste extra para telas bem pequenas */
@media (max-width: 480px){
  .hero{ padding: 130px 0 48px; }
  .cta-header{ padding: 8px 12px; font-size: 13px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary{ padding: 12px 16px; font-size: 13px; }
}
