/* ===================================
   CSS Variables - Piacentini Brand
   =================================== */
:root {
    --brand-primary: #2B5BA6;
    --brand-dark: #1E3A5F;
    --brand-accent: #F5A623;
    --text: #0f172a;
    --muted: #475569;
    --bg: #ffffff;
    --card: #f8fafc;
    --border: #e2e8f0;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--muted);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* ===================================
   Buttons
   =================================== */
.button-primary {
    display: inline-block;
    background: var(--brand-dark);
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--brand-primary);
}

.button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--brand-primary);
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--brand-primary);
    transition: var(--transition);
}

.button-secondary:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}

.button-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.button-full {
    width: 100%;
}

/* Estilos para o grupo de botões do Hero */
.hero-buttons {
    display: flex;
    flex-wrap: wrap; /* Garante que os botões se ajustem em telas menores */
    gap: 1rem; /* Espaço entre os botões */
    margin-top: 2rem; /* Adiciona espaço acima dos botões */
}

/* Animação de Pulso Verde */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Estilo do Botão Fast Estimate */
.button-fast-estimate {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E); /* Gradiente verde brilhante */
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2.5s infinite;
}

.button-fast-estimate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    animation-play-state: paused; /* Pausa a animação ao passar o mouse */
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brand-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hero-title {
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.chip {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ===================================
   Core Services (Design Refinado)
   =================================== */
.core-services {
    background: #f0f4f8; /* Fundo azul-acinzentado claro para a seção */
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem; /* Espaçamento entre os cards */
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0; /* Borda sutil */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Garante que a imagem respeite as bordas arredondadas */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
}

.service-card.featured {
    border-color: var(--brand-primary);
    box-shadow: 0 10px 15px rgba(43, 91, 166, 0.1), 0 20px 40px rgba(43, 91, 166, 0.1);
}

.service-badge {
    position: absolute;
    top: 0; /* Alinhado no topo do card */
    left: 50%;
    transform: translate(-50%, -50%); /* Centralizado e para fora */
    background: var(--brand-primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 3px solid white;
    z-index: 2;
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz esta área crescer para preencher o espaço */
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Alinha os botões no final */
}

.service-features li {
    padding: 0.4rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary); /* Checkmark azul da marca */
    font-weight: bold;
    font-size: 1.2rem;
}

.service-card-btn {
    width: 100%;
    margin-top: auto; /* Garante que o botão fique no final */
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--brand-dark); /* Botão com a cor escura da marca */
    border-radius: 8px; /* Bordas levemente arredondadas */
}

.service-card-btn:hover {
    background: var(--brand-primary); /* Cor primária no hover */
}
/* ===================================
   Specialty Services (Swiper Carousel)
   =================================== */
.secondary-services {
    background: #f0f4f8;
    padding: 80px 0;
    overflow: hidden;
}

.secondary-services .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.specialty-services-slider {
    width: 100%;
    /* A máscara cria o efeito de fade nas laterais, escondendo o "fim" do carrossel */
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.specialty-services-slider .swiper-slide {
    width: 340px;
    transition-timing-function: linear !important; 
}
.service-card-small {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.07);
}

.service-card-small .service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-small .service-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-small h4 {
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card-small p {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
    flex-grow: 1;
}

/* Estilos para as Setas de Navegação */
.specialty-services-slider .swiper-button-next,
.specialty-services-slider .swiper-button-prev {
    color: var(--brand-dark);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.specialty-services-slider .swiper-button-next:hover,
.specialty-services-slider .swiper-button-prev:hover {
    background: white;
    color: var(--brand-primary);
}

.specialty-services-slider .swiper-button-next:after,
.specialty-services-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 800;
}

/* ===================================
   Gallery
   =================================== */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   Why Choose Us
   =================================== */
.why-choose {
    background: var(--card);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem; /* <-- Adicione esta linha */
}

.feature-item {
    text-align: center;
}

.feature-icon {
    color: var(--brand-primary);
    margin: 0 auto 1.5rem;
    width: fit-content;
}

.feature-item h3 {
    color: var(--brand-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--muted);
}

/* ===================================
   Process
   =================================== */
.process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon {
    color: var(--brand-dark);
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--brand-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.95rem;
}

/* ===================================
   Reviews
   =================================== */
.reviews {
    background: var(--card);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--brand-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    color: var(--muted);
    font-weight: 600;
}

.houzz-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.houzz-badges img {
    height: 120px;
    width: auto;
}

/* ===================================
   Quote Form
   =================================== */
.quote-form {
    background: white;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(43, 91, 166, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-align: left;
    transition: var(--transition);
}

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

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    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(--muted);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--brand-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-license {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: white;
}

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

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        padding: 1rem 1.5rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content > .button-primary {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .services-grid-secondary {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-chips {
        flex-direction: column;
        gap: 0.5rem;
    }

    .chip {
        text-align: center;
    }

    .service-card,
    .service-card-small {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
    }
}

/* ===================================
   Accessibility & Motion Preferences
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
}

/* ===================================
   Botão Flutuante de SMS (Estilo WhatsApp)
   =================================== */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-sms {
    position: fixed;
    bottom: 90px; /* Aumentamos de 25px para 90px */
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366; /* Cor verde do WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-green 2.5s infinite; /* Adiciona a animação de pulso */
}

.floating-sms:hover {
    background: #128C7E; /* Verde mais escuro no hover */
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    animation-play-state: paused; /* Pausa a animação no hover */
}

.floating-sms svg {
    width: 28px;
    height: 28px;
}

/* ===================================
   Reviews (Design Final - Estilo Exemplo Captura de tela 2025-10-22 134409.jpg)
   =================================== */
.reviews {
    background: #f8fafc; /* Fundo bem claro, quase branco */
    padding: 80px 0;
    position: relative;
}

.reviews .section-title {
    color: var(--brand-dark); /* Título escuro */
    text-shadow: none;
    margin-bottom: 3rem;
    text-align: center; /* Garante centralização */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Layout responsivo em grade */
    gap: 2.5rem; /* Espaço entre os cards */
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #ffffff; /* Card branco */
    border-radius: 12px; /* Cantos arredondados */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* Sombra suave */
    border: 1px solid #e2e8f0; /* Borda cinza clara */
    border-top: 4px solid var(--brand-accent); /* Borda amarela no topo */
    padding: 2rem; /* Espaçamento interno */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left; /* Alinhamento à esquerda */
}

.testimonial-card:hover {
    transform: translateY(-5px); /* Efeito de levantar no hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-icon {
    font-family: Georgia, serif; /* Fonte serifada para aspas */
    font-size: 5rem; /* Tamanho da aspa */
    font-weight: bold;
    color: #f1f5f9; /* Cor cinza bem clara para aspas */
    line-height: 0.5; /* Ajuste vertical das aspas */
    margin-bottom: 0rem;
    margin-left: -5px; /* Pequeno ajuste horizontal */
    user-select: none; /* Impede seleção da aspa */
}

.testimonial-card .stars {
    color: var(--brand-accent); /* Cor das estrelas */
    font-size: 1.1rem; /* Tamanho das estrelas */
    margin-bottom: 1.5rem; /* Espaço abaixo das estrelas */
    margin-top: -10px; /* Ajuste vertical das estrelas */
}

.testimonial-text {
    color: var(--muted); /* Cor do texto do depoimento */
    font-size: 1rem; /* Tamanho do texto */
    line-height: 1.7; /* Espaçamento entre linhas */
    margin-bottom: 2rem; /* Espaço antes do nome do autor */
    font-style: normal; /* Estilo normal (não itálico) */
    flex-grow: 1; /* Faz o texto ocupar espaço e empurrar o autor para baixo */
}

.testimonial-author {
    display: flex;
    align-items: center; /* Alinha avatar e texto verticalmente */
    margin-top: auto; /* Garante que o autor fique no fim do card */
}

.testimonial-avatar {
    width: 50px; /* Tamanho do avatar */
    height: 50px;
    border-radius: 50%; /* Círculo perfeito */
    background: var(--brand-primary); /* Fundo azul */
    color: white; /* Cor da letra */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.3rem; /* Tamanho das iniciais */
    margin-right: 1rem; /* Espaço à direita do avatar */
    flex-shrink: 0; /* Impede que o avatar encolha */
    text-transform: uppercase; /* Coloca as iniciais em maiúsculo */
}

.testimonial-author div { /* Container para nome e localização */
    display: flex;
    flex-direction: column; /* Nome em cima, localização embaixo */
}

.testimonial-name {
    font-weight: 600;
    color: var(--text); /* Cor do nome */
    font-size: 1.05rem; /* Tamanho do nome */
    line-height: 1.3;
}

.testimonial-location {
    font-size: 0.9rem; /* Tamanho da localização */
    color: var(--muted); /* Cor da localização */
    line-height: 1.3;
}

/* Estilos para os Badges da Houzz (sem alterações) */
.houzz-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 40px; /* Espaço acima dos badges */
}

.houzz-badges img {
    height: 120px;
    width: auto;
    background: white; /* Fundo branco para os badges */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra nos badges */
    transition: var(--transition);
}

.houzz-badges img:hover {
    transform: scale(1.05); /* Efeito de zoom no hover */
}

/* Before/After Section CSS - Copiado de public_html (1)/styles.css */
.before-after {
    padding: 80px 0;
    background-color: var(--color-gray-light, #F9F9F9); /* Usa a variável se existir, senão usa um cinza claro */
}

.comparison-slider {
    margin-bottom: 3rem;
    max-width: 800px; /* Ajuste a largura máxima conforme necessário */
    margin-left: auto;
    margin-right: auto;
}

.comparison-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Pode usar var(--border-radius) se definido */
    box-shadow: var(--shadow-heavy, 0 8px 30px rgba(0, 0, 0, 0.2)); /* Usa a variável se existir */
    cursor: ew-resize; /* Cursor de arrastar horizontal */
    user-select: none; /* Impede seleção de imagem ao arrastar */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE */
}

.before-image, .after-image {
    width: 100%;
    height: auto; /* Altura automática para manter proporção */
    max-height: 600px; /* Limite a altura máxima se necessário */
    object-fit: cover;
    display: block;
    pointer-events: none; /* Impede eventos de mouse nas imagens */
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; /* Garante que a imagem 'after' cubra toda a altura */
    /* Começa mostrando 50% da imagem 'after' */
    clip-path: inset(0 50% 0 0); 
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Começa no meio */
    width: 4px;
    height: 100%;
    background-color: var(--brand-accent, #F5A623); /* Usa a variável se existir, senão um amarelo */
    cursor: ew-resize;
    transform: translateX(-50%);
    pointer-events: none; /* O handle em si não captura eventos, só o botão */
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--brand-accent, #F5A623); /* Usa a variável se existir */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-medium, 0 4px 20px rgba(0, 0, 0, 0.15)); /* Usa a variável se existir */
    pointer-events: auto; /* O botão captura eventos */
    cursor: ew-resize;
}

.slider-button svg {
    width: 24px;  /* Tamanho do ícone */
    height: 24px; /* Tamanho do ícone */
    color: white; /* Cor do ícone */
}
/* Fim do CSS do slider */

/* ===================================
   Footer Social Icons
   =================================== */
.footer-socials {
    margin-top: 1rem; /* Espaço acima dos ícones */
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.8); /* Cor padrão dos links do footer */
    transition: var(--transition);
    display: flex; /* Para alinhar ícone e texto */
    align-items: center;
    margin-bottom: 0.75rem; /* Espaço entre os links (um abaixo do outro) */
    text-decoration: none; /* Garante que não haja sublinhado */
}

.footer-socials a:last-child {
    margin-bottom: 0; /* Remove margem do último item */
}

.footer-socials a:hover {
    color: white; /* Cor mais clara no hover */
    transform: translateX(3px); /* Leve efeito de deslize */
}

.footer-socials a svg {
    /* O Lucide transforma as tags <i> em <svg> */
    width: 24px;
    height: 24px;
    stroke-width: 2;
    flex-shrink: 0; /* Impede que o ícone encolha */
}

.footer-socials a span {
    margin-left: 0.75rem; /* Espaço entre o ícone e o texto */
    font-size: 1rem; /* Tamanho do texto */
}
/* ===================================
   Anti-Spam Honeypot
   =================================== */
.honeypot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none; /* Impede que seja clicado */
}