/* Configurações iniciais e variáveis */
:root {
    --primary: #82494d;
    /* Vinho principal */
    --primary-light: #d6a7a1;
    /* Rosa claro */
    --secondary: #f5ebea;
    /* Bege clarinho para fundos */
    --dark: #333333;
    /* Para textos */
    --light: #ffffff;
    /* Branco */
    --accent: #bb8c89;
    /* Cor de destaque para botões hover */
    --gray-light: #f8f8f8;
    /* Cinza claro para seções alternadas */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Animações e efeitos */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-hover {
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Botão de ação comum */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(130, 73, 77, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(130, 73, 77, 0.3);
    color: var(--light);
}

/* Header e navegação */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
}

.header-main.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    height: 70px;
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 55px;
    transition: var(--transition);
}

.header-main.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px;
}

/* Estilo para o campo de seleção */
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: white;
    appearance: none;
    /* Remove a aparência padrão do navegador */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(130, 73, 77, 0.1);
}

select:required:invalid {
    color: #757575;
}

option {
    color: var(--dark);
}

option:first-child {
    color: #757575;
}

.nav-links li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

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

.whatsapp {
    display: flex;
    align-items: center;
    background: #25D366;
    color: var(--light) !important;
    padding: 8px 15px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.2);
    text-transform: none !important;
    text-decoration: none !important;
}

.whatsapp img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    margin-left: 8px;
}

.whatsapp span {
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 8px;
}

.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    color: white;
    text-decoration: none;
    overflow: hidden;
}

/* Ícone com Font Awesome */
.whatsapp-float i {
    font-size: 36px; /* Tamanho do ícone */
    color: white;
    position: relative;
    z-index: 2;
}

/* Efeito de pulsação contínua */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: 1;
}

/* Efeito hover */
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Efeito de clique */
.whatsapp-float:active {
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.1s ease;
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Para dispositivos muito pequenos */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

/* Seção Hero */
.hero {
    margin-top: 80px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    position: relative;
}

/* .hero-banner img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
} */

.desktop-banner {
    width: 100%;
    display: block;
}

.mobile-banner {
    display: none;
}

.info-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--primary);
    color: var(--light);
    padding: 15px 5%;
    margin: 0;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 15px;
}

.info-item i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--secondary);
}

/* Seção Sobre */
.about {
    padding: 80px 0;
    background-color: var(--light);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--secondary);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--dark);
}

/* Seção Serviços */
.services {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.service-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--dark);
}

.pinterest-container {
    position: relative;
    padding-bottom: 20px;
    /* Espaço na parte inferior */
}

.pinterest {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {

    /* Ajustes específicos para dispositivos móveis */
    .pinterest-container {
        padding-bottom: 10px;
    }
}


/* Estilos para a seção Frente da Loja */
/* Seção da loja */

.store-section h2 {
    margin-top: 20px;
}

.store-front {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Layout das lojas - forçando layout em linha */
.store-locations {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center; /* Centraliza horizontalmente */
    gap: 30px;
    margin: 0 auto 40px auto; /* Centraliza com margens automáticas */
    width: 100%;
    max-width: 1000px; /* Limita a largura máxima */
}

.store-location {
    flex: 0 0 calc(50% - 15px) !important; /* Exatamente metade do espaço menos metade do gap */
    max-width: calc(50% - 15px) !important; /* Limita a largura máxima com precisão */
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Garante que padding não afete a largura */
}

/* Estilo das imagens */
.store-image {
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    height: auto; /* Ajusta automaticamente a altura */
}


.store-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.store-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Legenda sobre a imagem */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    z-index: 1;
}

/* Overlay ao passar o mouse */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 43px);
    /* Ajuste para não sobrepor a legenda */
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.store-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Endereço abaixo da imagem */
.store-address {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    /* Arredonda apenas os cantos inferiores */
    text-align: center;
    color: #333;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* Garante que ocupe toda a largura */
}

.store-address i {
    color: #8a1538;
    /* Cor principal do seu site */
    margin-right: 5px;
}

/* Fix específico para Safari/Webkit */
@media screen and (-webkit-min-device-pixel-ratio:0) {

    .pinterest-container {
        position: relative;
        padding-bottom: 20px;
        /* Espaço na parte inferior */
    }

    .store-locations {
        display: -webkit-box;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    .store-location {
        width: 48%;
        -webkit-box-flex: 0;
    }
}

/* Responsividade - apenas para telas muito pequenas */
@media (max-width: 640px) {

    .store-locations, .maps {
        flex-direction: column !important;
        max-width: 100%;
    }

    .store-location, .map-container {
        /* flex: 0 0 100% !important; */
        max-width: 100% !important;
        margin-bottom: 30px;
    }

    .store-locations {
        flex-direction: column !important;
    }

    .store-location {
        max-width: 100% !important;
        margin-bottom: 30px;
    }

    .store-image img {
        height: 250px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 30px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    margin: auto;
    width: 80%;
    text-align: center;
    color: white;
    padding: 20px 0;
    height: 50px;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Animação para o Lightbox */
.lightbox-content,
.lightbox-caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Responsividade */
@media (max-width: 768px) {

    .store-locations {
        flex-direction: column;
    }

    .store-location {
        margin-bottom: 30px;
    }

    .store-image img {
        height: 250px;
    }

    .store-address {
        font-size: 0.85rem;
        padding: 12px 10px;
    }

    .store-images {
        flex-direction: column;
    }

    .store-image img {
        height: 250px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-close {
        top: 10px;
        right: 25px;
        font-size: 35px;
    }
}

/* Seção de Avaliações */
.review {
    padding: 80px 0;
    background-color: var(--secondary);
    text-align: center;
}

.review h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.elfsight-app-1a16424b-71d0-4002-a6fa-414495d4255b {
    max-width: 1000px !important;
    margin: 0 auto !important;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Seção de Localização */
.locations {
    padding: 80px 0;
    background-color: var(--light);
}

.maps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 0 auto;
    max-width: 1000px; /* Mesma largura máxima da seção anterior */
}

.map-container {
    flex: 0 0 calc(50% - 15px); /* Mesmo cálculo usado para .store-location */
    max-width: calc(50% - 15px);
    box-sizing: border-box;
    min-width: 0; /* Substitui o min-width existente para permitir o cálculo percentual */
}

.map-container h3 {
    padding: 20px;
    font-size: 1.2rem;
    color: var(--light);
    background: var(--primary);
    margin: 0;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}

.map-directions-btn {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.map-container p {
    padding: 15px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.map-container p i {
    margin-right: 10px;
    color: var(--primary);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* CTA Hero principal */
.hero-cta {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px 40px;
}

/* Animação de pulso para chamadas principais */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(130, 73, 77, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(130, 73, 77, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(130, 73, 77, 0.3);
    }
}

/* CTA de seção genérica */
.section-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.section-cta.centered {
    text-align: center;
    margin: 40px auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Botões CTA secundários */
.cta-button-secondary {
    display: block;
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
    width: fit-content;
    max-width: 90%; /* Para garantir que não ultrapasse a largura da tela em dispositivos muito pequenos */
}

.cta-button-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(130, 73, 77, 0.2);
}

/* Botões outline */
.cta-button-outline {
    display: block;
    background: transparent;
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
    width: fit-content;
    max-width: 90%;
}

.cta-button-outline:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(130, 73, 77, 0.2);
}

/* Adicione uma media query específica para mobile se necessário */
@media (max-width: 768px) {
    .cta-button-secondary,
    .cta-button-outline {
        width: fit-content;
        margin: 0 auto;
        display: block;
    }
    
    .section-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
/* Botões dentro dos cards de serviço */
.card-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--dark);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.card-cta:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

/* Botões de direção do Google Maps */
.map-directions-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.map-directions-btn:hover {
    background: var(--accent);
    color: var(--light);
}

/* Botão alternativo de contato */
.alternative-contact {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.alternative-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Botão de follow nas redes sociais */
.follow-cta {
    margin-top: 20px;
}

.follow-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

.follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
}

.follow-btn i {
    margin-right: 5px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Newsletter no footer */
.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #aaa;
}

.newsletter-form {
    display: flex;
    max-width: 300px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px 0 0 4px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 10px 15px;
    background: var(--primary-light);
    color: var(--dark);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary);
    color: white;
}

/* Botão de agendar horário */
.schedule-btn {
    display: inline-block;
    background: var(--primary-light);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.schedule-btn:hover {
    background: var(--primary);
    color: white;
}

.schedule-btn i {
    margin-right: 5px;
}

/* Botão voltar ao topo */
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Media queries para responsividade dos CTAs */
@media (max-width: 768px) {
    .hero-cta {
        margin-top: 20px;
        padding-bottom: 30px;
    }

    .section-cta {
        margin-top: 25px;
    }

    .cta-button,
    .cta-button-secondary,
    .cta-button-outline {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .card-cta {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .follow-btn {
        font-size: 0.85rem;
        padding: 6px 15px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        margin-top: 15px;
        padding: 0 15px 25px;
    }

    .cta-button,
    .cta-button-secondary,
    .cta-button-outline {
        width: 100%;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 8px 15px;
		 text-align: center;
    }

    .follow-btn {
        display: block;
        margin: 10px auto 0;
        max-width: 220px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        bottom: 20px;
        right: 20px;
    }
}

/* Seção Contato */

/* Estilos para validação de formulário */
input:invalid, textarea:invalid, select:invalid {
    border-color: #ffdddd;
}

input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Campo honeypot para proteção anti-spam */
.honeypot {
    display: none;
    position: absolute;
    left: -9999px;
}

/* Contador de caracteres */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out;
}

input[type="tel"]:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 5px rgba(108, 99, 255, 0.5);
    outline: none;
}

.contact {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact form {
    flex: 1;
    min-width: 300px;
    background: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

/* Estilos para notificações do formulário */
.form-notification {
    margin: 15px 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.form-notification.show {
    padding: 12px;
    height: auto;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.form-notification.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-notification.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.form-notification.loading {
    background-color: rgba(33, 150, 243, 0.1);
    color: #1565c0;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Animação de loading */
.loading-dots:after {
    content: '.';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '.';
    }

    40% {
        content: '..';
    }

    60% {
        content: '...';
    }

    80%,
    100% {
        content: '';
    }
}

/* Ajuste para o botão submit desabilitado */
.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(130, 73, 77, 0.1);
}

.contact textarea {
    height: 150px;
    resize: vertical;
}

.contact .cta-button {
    width: 100%;
    margin-top: 10px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-height: 550px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--light);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-media {
    margin-top: 30px;
}

.social-media h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--light);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--light);
    font-size: 1.3rem;
    transition: var(--transition);
}

.whatsapp-icon {
    background: #25D366;
}

.instagram-icon {
    background: #E1306C;
}

.facebook-icon {
    background: #3B5998;
}

.pinterest-icon {
    background: #BD081C;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.footer h4 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-light);
}

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

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #aaa;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom i {
    color: white;
}

.mobile-banner {
    display: none;
}

/* Responsividade */
@media (max-width: 1024px) {
    .container {
        padding: 0 5%;
    }

    .navbar {
        padding: 0 5%;
    }

    .services-grid,
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .header-main {
        height: 70px;
    }

    .header-main.scrolled {
        height: 60px;
    }

    .logo img {
        height: 45px;
    }

    .header-main.scrolled .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: block;
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
        margin-top: 0;
    }

    .hero {
        margin-top: 70px;
    }

    .info-banner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .about-content,
    .services-grid {
        gap: 30px;
    }

    .service-card,
    .value-card {
        padding: 20px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact form,
    .contact-info {
        width: 100%;
    }

    .about,
    .services,
    .review,
    .contact,
    .locations {
        padding: 60px 0;
    }

    .styled-container.pinterest-container {
        padding: 60px 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p,
    .footer-links ul li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

}

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

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .header-main {
        height: 60px;
    }

    .header-main.scrolled {
        height: 55px;
    }

    .logo img {
        height: 40px;
    }

    .header-main.scrolled .logo img {
        height: 35px;
    }

    .hero {
        margin-top: 60px;
    }

    .info-item {
        font-size: 0.9rem;
    }

    .info-item i {
        font-size: 1rem;
    }

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

    .contact form,
    .map-container {
        padding: 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .pinterest-container h3,
    .review h3 {
        font-size: 1rem;
    }

    .about,
    .services,
    .review,
    .contact,
    .locations {
        padding: 50px 0;
    }

    .styled-container.pinterest-container {
        padding: 50px 5%;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}