/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

h1 {
    font-size: 3.2em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #6a89cc; /* Azul suave */
    color: #fff;
    border: 2px solid #6a89cc;
}

.btn-primary:hover {
    background-color: #4a69bd;
    border-color: #4a69bd;
}

.btn-secondary {
    background-color: #2ecc71; /* Verde para WhatsApp */
    color: #fff;
    border: 2px solid #2ecc71;
}

.btn-secondary:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #2c3e50;
}

.logo img {
    margin-right: 10px;
    border-radius: 50%;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #6a89cc;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #6a89cc;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x800?text=Sof%C3%A1+Limpo') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-section h1 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 4em;
}

.hero-section p {
    color: #eee;
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Catálogo Específico */
.hero-catalogo {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x800?text=Catalogo+Estofados') no-repeat center center/cover;
    min-height: 400px;
    padding: 100px 0;
}

.hero-catalogo h1 {
    font-size: 3.5em;
}

.hero-catalogo p {
    font-size: 1.3em;
}

/* Hero Promoções Específico */
.hero-promocoes {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x800?text=Promocoes+Estofados') no-repeat center center/cover;
    min-height: 400px;
    padding: 100px 0;
}

.hero-promocoes h1 {
    font-size: 3.5em;
}

.hero-promocoes p {
    font-size: 1.3em;
}

/* Hero Avisos Específico */
.hero-avisos {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x800?text=Avisos+Importantes') no-repeat center center/cover;
    min-height: 400px;
    padding: 100px 0;
}

.hero-avisos h1 {
    font-size: 3.5em;
}

.hero-avisos p {
    font-size: 1.3em;
}

/* Hero Resultados Específico */
.hero-resultados {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x800?text=Resultados+Impressionantes') no-repeat center center/cover;
    min-height: 400px;
    padding: 100px 0;
}

.hero-resultados h1 {
    font-size: 3.5em;
}

.hero-resultados p {
    font-size: 1.3em;
}


/* About Section */
.about-section p {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.commitment-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.commitment-icons div {
    text-align: center;
    font-size: 1.2em;
    color: #555;
}

.commitment-icons i {
    font-size: 3em;
    color: #6a89cc;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #eef4f8; /* Fundo claro para destaque */
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.reason-item i {
    font-size: 3.5em;
    color: #6a89cc;
    margin-bottom: 20px;
}

.reason-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.reason-item p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

/* Pre-Appointment Info Section */
.pre-appointment-info .info-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.pre-appointment-info .info-list li {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    color: #999;
}

.pre-appointment-info .info-list li i {
    color: #2ecc71; /* Verde para os checks */
    margin-right: 15px;
    font-size: 1.4em;
    margin-top: 3px;
}

.pre-appointment-info .call-to-action-info {
    font-style: italic;
    color: #666;
    margin-top: 30px;
    font-size: 1em;
}

/* Catálogo de Serviços */
.catalog-section .section-description {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.2em;
    color: #555;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.catalog-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.catalog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.catalog-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    margin: 20px 15px 10px 15px;
    color: #2c3e50;
}

/* Removido: .catalog-item .original-price */

.catalog-item .price-base { /* Renomeado de .discount-price */
    color: #e74c3c; /* Vermelho para o preço base */
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
}

.catalog-item .item-description {
    font-size: 0.95em;
    color: #999;
    padding: 0 20px 20px 20px;
    flex-grow: 1; /* Permite que a descrição ocupe o espaço restante */
}

.catalog-item .btn {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 80px; /* Espaçamento entre seções de catálogo */
}

/* Mensagens para Clientes */
.client-messages {
    background-color: #f0f6fa; /* Fundo suave para as mensagens */
}

.message-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.message-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.message-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: center;
}

.message-item h3 i {
    color: #6a89cc;
    margin-right: 10px;
    font-size: 1.2em;
}

.message-item p {
    font-size: 1em;
    color: #555;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 0; /* Remover margem inferior padrão */
}

/* Estilos para a página SOBRE OS SERVIÇOS */
#service-detail-section {
    background-color: #fff;
    padding: 60px 0;
}

#service-detail-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#service-detail-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

#service-detail-content p {
    font-size: 1.1em;
    color: #999;
    margin-bottom: 30px;
    text-align: justify; /* Alinhar texto da descrição */
}

.service-benefits-container, .service-process-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left; /* Alinhar texto dentro dos contêineres */
}

.service-benefits-container h3, .service-process-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left; /* Alinhar título dos benefícios/processo */
}

.service-benefits {
    list-style: none;
    padding-left: 0;
}

.service-benefits li {
    font-size: 1.1em;
    color: #999;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-benefits li::before {
    content: '\2713'; /* Checkmark unicode */
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.process-list {
    list-style: decimal;
    padding-left: 25px;
    font-size: 1.1em;
    color: #999;
}

.process-list li {
    margin-bottom: 10px;
}

.process-list li strong {
    color: #4682B4;
}

.process-info {
    font-size: 1em;
    color: #666;
    margin-top: 20px;
    text-align: left; /* Alinhar informações do processo */
}

/* Estilos para a página de PROMOÇÕES */
.promotions-section .section-description {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.2em;
    color: #555;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promo-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.promo-item .promo-icon {
    font-size: 4em;
    color: #6a89cc;
    margin-bottom: 20px;
}

.promo-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.promo-item .promo-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.promo-item .promo-discount {
    font-size: 1.4em;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-item .promo-note {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 20px;
}

.promo-feedback {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
}
.promo-feedback .btn {
    margin-top: 20px;
}

/* Estilos para a página de AVISOS */
.avisos-section .section-description {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.2em;
    color: #555;
}

.avisos-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

/* Estilos para a página de RESULTADOS (Carrossel) */
.results-carousel-section .section-description {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.2em;
    color: #555;
}

.carousel-wrapper {
    position: relative;
    max-width: 900px; /* Largura máxima do carrossel */
    margin: 0 auto;
    padding: 0 50px; /* Espaço para os botões */
}

.carousel-container {
    overflow: hidden; /* Esconde o que está fora da área visível */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background-color: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Animação de deslizamento */
}

.carousel-item {
    min-width: 100%; /* Cada item ocupa 100% da largura do container */
    flex-shrink: 0; /* Impede que os itens encolham */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.carousel-item .item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Modificações para o layout das imagens no carrossel */
.img-comparison {
    display: flex;
    gap: 20px; /* Aumentei o espaço entre as imagens */
    justify-content: center;
    align-items: flex-start; /* Alinha os itens pelo topo */
    width: 100%; /* Ocupa a largura total do carousel-item */
    max-width: 800px; /* Limita a largura total da comparação */
    margin-bottom: 20px; /* Espaço abaixo da comparação */
}

.img-wrapper {
    position: relative; /* Para posicionar o botão de zoom */
    flex: 1; /* Faz com que cada wrapper ocupe espaço igual */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.img-comparison img {
    width: 100%; /* Ocupa 100% da largura do img-wrapper */
    height: auto; /* Mantém a proporção */
    max-height: 400px; /* Limita a altura para evitar imagens muito grandes */
    object-fit: contain; /* Garante que a imagem caiba sem cortar */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px; /* Espaço entre a imagem e o label */
}

.img-comparison .label {
    font-weight: 600;
    color: #555;
    margin-top: 0; /* Resetar margem superior */
    width: 100%;
    text-align: center;
}

/* Estilos para o botão de Zoom */
.zoom-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(106, 137, 204, 0.9); /* Azul suave semi-transparente */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zoom-button:hover {
    background-color: #4a69bd;
}

/* Estilos para o Modal de Imagem */
.image-modal {
    display: none; /* Escondido por padrão */
    position: fixed; /* Fica no topo da página */
    z-index: 2000; /* Z-index alto para ficar acima de tudo */
    left: 0;
    top: 0;
    width: 100%; /* Largura total */
    height: 100%; /* Altura total */
    overflow: auto; /* Habilita scroll se a imagem for maior que a tela */
    background-color: rgba(0,0,0,0.9); /* Fundo preto com transparência */
    display: none; /* Usar flexbox para centralizar */
    justify-content: center; /* Centralizar horizontalmente */
    align-items: center; /* Centralizar verticalmente */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Largura máxima da imagem no modal */
    max-height: 90%; /* Altura máxima da imagem no modal */
    object-fit: contain; /* Garante que a imagem caiba sem cortar */
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* Animação de zoom para o modal */
@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

/* Botão de fechar do modal */
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal-btn:hover,
.close-modal-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none; /* Permite cliques através dos botões se não estiverem ativos */
}

.carousel-button {
    background-color: rgba(106, 137, 204, 0.8); /* Azul suave semi-transparente */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    pointer-events: all; /* Permite cliques nos botões */
}

.carousel-button:hover {
    background-color: #4a69bd;
    transform: scale(1.1);
}

.carousel-button:disabled {
    background-color: rgba(170, 170, 170, 0.6);
    cursor: not-allowed;
    transform: scale(1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item .stars {
    color: #f39c12; /* Cor das estrelas */
    margin-bottom: 15px;
    font-size: 1.2em;
}

.testimonial-item p {
    font-size: 1.1em;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-item .client-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1em;
    margin-top: auto; /* Empurra o nome para baixo */
}


/* Footer */
.main-footer {
    background-color: #2c3e50; /* Azul escuro para o rodapé */
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.main-footer h2 {
    color: #fff;
    margin-bottom: 30px;
}

.main-footer p {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.main-footer .contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #fff;
}

.main-footer .contact-info i {
    margin-right: 10px;
    color: #6a89cc;
}

.main-footer .contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .contact-info a:hover {
    color: #6a89cc;
}

.main-footer .btn-secondary {
    margin-top: 30px;
}

.main-footer .copyright {
    margin-top: 50px;
    font-size: 0.9em;
    color: #aaa;
}

/* Responsividade */
@media (max-width: 992px) {
    .main-nav ul li {
        margin-left: 20px;
    }
    .hero-section h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 2em;
    }
    .hero-catalogo h1, .hero-promocoes h1, .hero-avisos h1, .hero-resultados h1 {
        font-size: 3em;
    }
    #service-detail-content h2 {
        font-size: 2.2em;
    }
    .carousel-wrapper {
        padding: 0 20px; /* Reduzir padding para botões */
    }
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }
    .main-nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-nav ul li {
        margin: 10px 15px;
    }
    .hero-section {
        padding: 100px 0;
        min-height: 400px;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1.2em;
    }
    .commitment-icons {
        flex-direction: column;
        gap: 30px;
    }
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    .pre-appointment-info .info-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .pre-appointment-info .info-list li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .catalog-grid, .promo-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .message-grid {
        grid-template-columns: 1fr;
    }
    .message-item h3 {
        text-align: center;
        justify-content: center;
    }
    .message-item p {
        text-align: center;
    }
    #service-detail-content h2 {
        font-size: 2em;
    }
    #service-detail-content p {
        text-align: center; /* Centralizar em telas menores */
    }
    .service-benefits-container, .service-process-container {
        text-align: center;
    }
    .service-benefits-container h3, .service-process-container h3 {
        text-align: center;
    }
    .service-benefits li {
        padding-left: 0;
        text-align: center;
    }
    .service-benefits li::before {
        position: static;
        margin-right: 5px;
    }
    .process-list {
        padding-left: 0;
        text-align: center;
        list-style-position: inside;
    }
    .process-info {
        text-align: center;
    }
    .promo-item .promo-description, .promo-item .promo-note {
        text-align: center;
    }
    .avisos-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .avisos-list li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    /* Ajustes para img-comparison em telas menores */
    .img-comparison {
        flex-direction: column; /* Empilha as imagens verticalmente */
        gap: 20px;
    }
    .img-wrapper {
        width: 100%; /* Ocupa a largura total disponível */
        max-width: 400px; /* Limita a largura para não ficar muito grande */
    }
    .img-comparison img {
        max-height: 300px; /* Ajusta a altura máxima para telas menores */
    }
    .carousel-wrapper {
        padding: 0; /* Remove padding para botões ficarem nas laterais */
    }
    .carousel-navigation {
        width: auto; /* Ajusta a largura para os botões */
        left: 10px;
        right: 10px;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    .main-nav ul li {
        margin: 5px 10px;
    }
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section p {
        font-size: 1em;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    h2 {
        font-size: 1.8em;
    }
    p {
        font-size: 1em;
    }
    .hero-catalogo h1, .hero-promocoes h1, .hero-avisos h1, .hero-resultados h1 {
        font-size: 2.5em;
    }
    .hero-catalogo p, .hero-promocoes p, .hero-avisos p, .hero-resultados p {
        font-size: 1.1em;
    }
    .catalog-item h3 {
        font-size: 1.4em;
    }
    .catalog-item .price-base {
        font-size: 1.5em;
    }
    .message-item h3 {
        font-size: 1.2em;
    }
    #service-detail-content h2 {
        font-size: 1.8em;
    }
    .service-benefits-container h3, .service-process-container h3 {
        font-size: 1.4em;
    }
    .service-benefits li, .process-list li, .process-info {
        font-size: 1em;
    }
    .promo-item h3 {
        font-size: 1.5em;
    }
    .promo-item .promo-discount {
        font-size: 1.2em;
    }
    .testimonial-item p {
        font-size: 1em;
    }
    .zoom-button {
        padding: 6px 10px;
        font-size: 0.8em;
    }
    .close-modal-btn {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}
/* Estilos para a barra de zoom slider */
#zoomSlider {
    position: fixed; /* Posiciona a barra de zoom slider em relação à janela do navegador */
    bottom: 0; /* Fica sempre na parte inferior da tela */
    left: 50%; /* Centraliza a barra de zoom slider */
    transform: translateX(-50%); /* Centraliza a barra de zoom slider */
    width: 80%; /* Largura da barra de zoom slider */
    height: 5px; /* Altura da barra de zoom slider */
    background: #ddd; /* Cor de fundo da barra de zoom slider */
    border-radius: 5px; /* Bordas arredondadas da barra de zoom slider */
    outline: none; /* Remove o contorno da barra de zoom slider */
    z-index: 1000; /* Garante que a barra de zoom slider fique acima de outros elementos */
}

#zoomSlider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Remove o estilo padrão do thumb */
    appearance: none;
    width: 15px; /* Largura do thumb */
    height: 15px; /* Altura do thumb */
    border-radius: 50%; /* Bordas arredondadas do thumb */
    background: #6a89cc; /* Cor do thumb */
    cursor: pointer; /* Cursor de ponteiro */
}

#zoomSlider::-moz-range-thumb {
    width: 15px; /* Largura do thumb */
    height: 15px; /* Altura do thumb */
    border-radius: 50%; /* Bordas arredondadas do thumb */
    background: #6a89cc; /* Cor do thumb */
    cursor: pointer; /* Cursor de ponteiro */
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

body.dark-mode .main-header {
    background-color: #2c2c2c;
    box-shadow: 0 2px 10px rgba(255,255,255,0.05);
}

body.dark-mode .logo {
    color: #f0f0f0;
}

body.dark-mode .main-nav ul li a {
    color: #ccc;
}

body.dark-mode .main-nav ul li a:hover,
body.dark-mode .main-nav ul li a.active {
    color: #8ab4f8; /* Um azul mais claro para o dark mode */
}

body.dark-mode .main-nav ul li a::after {
    background-color: #8ab4f8;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
    color: #e0e0e0;
}

body.dark-mode p {
    color: #ccc;
}

body.dark-mode .hero-section h1,
body.dark-mode .hero-section p {
    color: #fff; /* Manter branco no hero */
}

body.dark-mode .about-section,
body.dark-mode .pre-appointment-info,
body.dark-mode .catalog-section,
body.dark-mode .promotions-section,
body.dark-mode .avisos-section,
body.dark-mode #service-detail-section {
    background-color: #1a1a1a;
}

body.dark-mode .why-choose-us,
body.dark-mode .client-messages,
body.dark-mode .promo-section {
    background-color: #2c2c2c;
}

body.dark-mode .reason-item,
body.dark-mode .pre-appointment-info .info-list li,
body.dark-mode .catalog-item,
body.dark-mode .message-item,
body.dark-mode .promo-item,
body.dark-mode .testimonial-item,
body.dark-mode #service-detail-content .service-benefits-container,
body.dark-mode #service-detail-content .service-process-container,
body.dark-mode .carousel-container {
    background-color: #3a3a3a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

body.dark-mode .reason-item i,
body.dark-mode .pre-appointment-info .info-list li i,
body.dark-mode .commitment-icons i,
body.dark-mode .message-item h3 i,
body.dark-mode .promo-item .promo-icon,
body.dark-mode .service-benefits li::before {
    color: #8ab4f8;
}

body.dark-mode .catalog-item .price-base {
    color: #ff8a80; /* Vermelho mais suave para dark mode */
}

body.dark-mode .catalog-item .price-original {
    color: #aaa;
}

body.dark-mode .discount-badge {
    background-color: #ff8a80;
}

body.dark-mode .main-footer {
    background-color: #1a1a1a;
}

body.dark-mode .main-footer h2 {
    color: #e0e0e0;
}

body.dark-mode .main-footer p {
    color: #aaa;
}

body.dark-mode .main-footer .contact-info i {
    color: #8ab4f8;
}

body.dark-mode .main-footer .contact-info a {
    color: #ccc;
}

body.dark-mode .main-footer .contact-info a:hover {
    color: #8ab4f8;
}

body.dark-mode .btn-primary {
    background-color: #8ab4f8;
    border-color: #8ab4f8;
    color: #1a1a1a;
}

body.dark-mode .btn-primary:hover {
    background-color: #6a9de8;
    border-color: #6a9de8;
}

body.dark-mode .btn-secondary {
    background-color: #4CAF50; /* Verde mais escuro para dark mode */
    border-color: #4CAF50;
}

body.dark-mode .btn-secondary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
}

body.dark-mode .zoom-button {
    background-color: rgba(138, 180, 248, 0.9);
}

body.dark-mode .zoom-button:hover {
    background-color: #6a9de8;
}

body.dark-mode .carousel-button {
    background-color: rgba(138, 180, 248, 0.8);
}

body.dark-mode .carousel-button:hover {
    background-color: #6a9de8;
}

body.dark-mode .carousel-button:disabled {
    background-color: rgba(100, 100, 100, 0.6);
}

body.dark-mode .zoom-controls {
    background-color: rgba(0, 0, 0, 0.8);
}

body.dark-mode .zoom-controls input[type="range"]::-webkit-slider-thumb {
    background: #8ab4f8;
}

body.dark-mode .zoom-controls input[type="range"]::-webkit-slider-thumb:hover {
    background: #6a9de8;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #6a89cc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dark-mode-toggle:hover {
    background-color: #4a69bd;
    transform: scale(1.1);
}

body.dark-mode .dark-mode-toggle {
    background-color: #8ab4f8;
}

body.dark-mode .dark-mode-toggle:hover {
    background-color: #6a9de8;
}

/* Botão de Compartilhamento */
.share-button {
    position: fixed;
    bottom: 80px; /* Posição acima do dark-mode-toggle */
    right: 20px;
    background-color: #20B2AA; /* Cor para o botão de compartilhamento */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.share-button:hover {
    background-color: #1A938A;
    transform: scale(1.1);
}

/* Dark Mode para o botão de compartilhamento */
body.dark-mode .share-button {
    background-color: #48D1CC;
}

body.dark-mode .share-button:hover {
    background-color: #20B2AA;
}

/* Ajuste de responsividade para o botão de compartilhamento */
@media (max-width: 480px) {
    .share-button {
        bottom: 70px; /* Ajuste para telas menores */
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }
}

/* Print Styles */
@media print {
    body {
        visibility: hidden; /* Hide everything by default */
    }
    .no-print {
        display: none !important; /* Ensure no-print elements are hidden */
    }
    /* You can selectively make certain elements visible for printing if needed */
    /* For example, if you want to print only the main content: */
    /* main {
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    } */
}