/* Estilos Gerais */
:root {
    --primary-color: #ffffff; /* Azul escuro mais próximo ao site de referência */
    --secondary-color: #cd4e4e; /* Azul claro/turquesa para destaques */
    --accent-color: #E74C3C; /* Vermelho/laranja sutil para CTAs ou pequenos detalhes */
    --white: #ffffff;
    --off-white: #F8FAFB; /* Branco suave com tom azulado mais claro */
    --light-gray: #F1F5F9; /* Cinza muito claro para fundos */
    --medium-gray: #E2E8F0; /* Cinza médio para bordas e divisores */
    --dark-gray: #475569; /* Cinza escuro para textos */
    --text-color: #64748B;
    --black: #1E293B;
    --gradient-bg: linear-gradient(135deg, #5a1b1b, #752d2d); /* Gradiente para fundos premium */
    --card-bg: #FFFFFF;
    --section-bg-light: #F8FAFB;
    --section-bg-dark: #5a1b1b;
    --teal-primary: #760f0f; /* Tom de verde-azulado mais escuro */
    --teal-secondary: #b81414; /* Tom de verde-azulado médio */
    --teal-light: #ea5e5e; /* Tom de verde-azulado claro */
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--off-white);
    padding-top: 80px; /* Adiciona padding para compensar a altura do header fixo */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

section {
    padding: 80px 0;
}

/* Header */
.header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:#e10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

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

.logo img {
    height: 100px;
    transition: all 0.3s ease;
}

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

.menu ul {
    display: flex;
}

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

.menu ul li a {
    font-weight: 500;
    position: relative;
}

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

.menu ul li a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}



.hero {
  position: relative; /* mantém o contexto do z-index */
  z-index: 0; /* faz a seção hero ficar abaixo das demais */
  
  background-image: linear-gradient(rgba(27, 75, 90, 0.7), rgba(27, 75, 90, 0.7)), 
                    url('hero_image_oral_blue_final.webp');
  background-size: cover;
  background-position: center;

  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  overflow: visible; /* impede que corte a próxima seção */
}




.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, rgba(27, 75, 90, 0) 70%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Quem Somos */
.quem-somos {
    background: var(--gradient-bg);
    color: var(--white);
    position: relative;
    z-index: 1; /* fica acima da hero */
}

.quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
      z-index: -1; /* mantém o fundo da seção atrás do texto */

}

.quem-somos .section-title {
    color: var(--white);
}

.quem-somos .section-title::after {
    background-color: var(--white);
}

.quem-somos-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.quem-somos-text {
    flex: 1;
}

.quem-somos-text p {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.quem-somos-text ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
}

.quem-somos-text ul li i {
    color: var(--white);
    margin-right: 10px;
}


/* Organiza texto e imagem lado a lado */
.quem-somos-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* espaçamento entre texto e imagem */
  flex-wrap: wrap; /* faz o layout quebrar no celular */
}

/* Define o comportamento do texto */
.quem-somos-text {
  flex: 1;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}


/* Tratamentos */
.tratamentos {
    background-color: var(--section-bg-light);
    position: relative;
}

.tratamentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233498db' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.tratamento-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tratamento-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tratamento-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tratamento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tratamentos-image {
    overflow: hidden; /* Para garantir que a imagem não saia do contêiner ao escalar */
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.tratamentos-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease; /* Adiciona transição para o hover */
}

.tratamentos-image img:hover {
    transform: scale(1.05); /* Efeito de zoom suave */
}

/* Método Oral Blue */
.metodo {
    background: var(--gradient-bg);
    color: var(--white);
    position: relative;
}

.metodo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.metodo .section-title {
    color: var(--white);
}

.metodo .section-title::after {
    background-color: var(--white);
}

.metodo-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.metodo-text {
    flex: 1;
}

.metodo-text p {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.metodo-text ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
}

.metodo-text ul li i {
    color: var(--white);
    margin-right: 10px;
}

.metodo-image {
    flex: 1;
    overflow: hidden; /* Para garantir que a imagem não saia do contêiner ao escalar */
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.metodo-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease; /* Adiciona transição para o hover */
}

.metodo-image img:hover {
    transform: scale(1.05); /* Efeito de zoom suave */
}

/* Depoimentos */
.depoimentos {
    background-color: var(--section-bg-light);
    text-align: center;
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233498db' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.depoimentos-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.depoimento {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.depoimento::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
}

.depoimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.depoimento-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--dark-gray);
    text-align: left;
}

.depoimento-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    text-align: left;
}

/* Botão Flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 60px;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    color: white;
    display: block;
}

/* Botão de Agendar Consulta Destacado */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.cta-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-special {
    background: linear-gradient(135deg, #d4756e 0%, #c85a56 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-special:hover {
    background: linear-gradient(135deg, #c85a56 0%, #b84a46 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mapa */
.footer-map {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.footer-map iframe {
    pointer-events: auto; /* Permite interação com o iframe do mapa */
    width: 200px;
    height: 200px;
    border: none;
    display: block;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.depoimento-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.depoimento-author {
    font-weight: 600;
    color: var(--black);
}

/* Footer Map */
.footer-map {
    width: 100%;
    height: 350px;
    margin-bottom: 40px;
    overflow: hidden;
    background: var(--light-gray);
}

.footer-map iframe {
    pointer-events: auto; /* Permite interação com o iframe do mapa */
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* FAQ */
.faq {
    background: var(--gradient-bg);
    color: var(--white);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.faq .section-title {
    color: var(--white);
}

.faq .section-title::after {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--white);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px; /* Aumentado para garantir que o conteúdo caiba */
}

.faq-item.active .faq-question {
    background-color: rgba(52, 152, 219, 0.3);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.3s ease; /* Adicionado transição para o ícone */
}

.faq-question i {
    transition: transform 0.3s ease; /* Adicionado transição para o ícone */
    color: var(--white);
}

/* Contato */
.contato {
    background: var(--teal-primary);
    color: var(--black);
    position: relative;
}

.contato .section-title {
    color: var(--white);
}

.contato .section-title::after {
    background-color: var(--teal-light);
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233498db' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.contato-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contato-form {
    flex: 1;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contato-info {
    flex: 1;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contato-item i {
    font-size: 1.5rem;
    color: var(--teal-light);
    margin-right: 15px;
    margin-top: 5px;
}

.contato-item h3 {
    margin-bottom: 5px;
    color: var(--black);
}

.contato-item p {
    color: var(--black);
}

.contato-social h3 {
    margin-bottom: 15px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

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

.footer-links,
.footer-tratamentos,
.footer-contato {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer ul li a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer ul li a:hover,
.footer-bottom a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contato p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contato p i {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .menu {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .quem-somos-content,
    .metodo-content,
    .contato-content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .depoimentos-slider {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Adicionando estilos para o menu mobile */
.menu.active {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.menu.active ul {
    flex-direction: column;
}

.menu.active ul li {
    margin: 10px 0;
}



/* Efeito de cursor personalizado */
.btn, .tratamento-card, .faq-question, .social-icons a {
    cursor: pointer;
}

/* Efeito de destaque para o botão de agendamento */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover::before {
    left: 100%;
}


/* Cursor personalizado e rastro do mouse */
body {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--teal-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
}

/* Botão especial "Semana do Implante" */
.btn-special {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: var(--white);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
    animation: pulse-glow 2s infinite;
}

.btn-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-special:hover::before {
    left: 100%;
}

.btn-special:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    color: var(--white);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 30px rgba(78, 205, 196, 0.6);
    }
}

/* Melhorias nos botões existentes */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Efeitos nos cards */
.tratamento-card, .depoimento, .contato-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tratamento-card::before, .depoimento::before, .contato-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.6s;
}

.tratamento-card:hover::before, .depoimento:hover::before, .contato-item:hover::before {
    left: 100%;
}

.tratamento-card:hover, .depoimento:hover, .contato-item:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Efeitos nos links do menu */
.menu ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.menu ul li a:hover {
    transform: translateY(-2px);
    color: var(--secondary-color);
}



/* Efeito parallax suave */
.hero {
    z-index: 1;
    /* position: relative; - Removido para corrigir o bug de rolagem */
    /* background-attachment: fixed; - Removido para corrigir o bug de rolagem */
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeito de digitação no hero */
.hero h1 {
    overflow: hidden;
    border-right: 3px solid var(--secondary-color);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary-color) }
}

/* Efeitos nos ícones */
.tratamento-icon, .contato-item i {
    transition: all 0.3s ease;
}

.tratamento-card:hover .tratamento-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--teal-secondary);
}

.contato-item:hover i {
    transform: scale(1.3) rotate(-10deg);
    color: var(--white);
}

/* Efeito de ondulação nos botões */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    transition: width 0s, height 0s;
}

/* Responsividade para o cursor personalizado */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-trail {
        display: none;
    }
    
    .cta-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-special {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Estilos para campos editáveis */
.editable-text {
    border: 2px dashed transparent;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.editable-text:hover {
    border-color: var(--teal-light);
    background-color: rgba(94, 234, 212, 0.1);
    cursor: text;
}

.editable-text:focus {
    outline: none;
    border-color: var(--teal-secondary);
    background-color: rgba(94, 234, 212, 0.2);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.editable-text::before {
    content: '✏️ Clique para editar';
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 12px;
    color: var(--teal-light);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.editable-text:hover::before {
    opacity: 1;
}

/* Botão para salvar alterações */
.edit-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.edit-controls.show {
    display: block;
}

.save-btn {
    background: var(--teal-secondary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.save-btn:hover {
    background: var(--teal-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* Indicador de edição ativa */
.editing-mode .editable-text {
    border-color: var(--teal-secondary);
    background-color: rgba(94, 234, 212, 0.15);
}

/* Notificação de salvamento */
.save-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--teal-secondary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.save-notification.show {
    transform: translateX(0);
}

.save-notification .close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
}


/* Galeria de Resultados */
.galeria-resultados {
    padding: 80px 0;
    background: var(--section-bg-light);
}

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

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

.image-frame {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--teal-primary), var(--teal-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-frame:hover::before {
    opacity: 0.1;
}

.image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-frame img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

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

/* Responsividade da galeria */
@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-frame {
        padding: 15px;
    }
    
    .image-frame img {
        height: 200px;
    }
}


/* Estilos para formulário com duas opções */
.form-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 200px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-feedback.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons .btn {
        min-width: auto;
    }
}



/* Estilos para Páginas de Especialidade */

.conteudo-especialidade {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background-color: var(--white);
}

.conteudo-flex {
  display: flex;
  align-items: center; /* 🔥 Centraliza verticalmente texto e imagem */
  justify-content: center; /* Centraliza horizontalmente dentro do container */
  gap: 60px; /* Espaço entre texto e imagem */
  flex-wrap: wrap; /* Responsivo: empilha no celular */
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}



.conteudo-texto {
  flex: 1;
  min-width: 400px;
  text-align: left;
  line-height: 1.8;
  color: #475569;
}

.conteudo-imagem {
    flex: 1;
    text-align: center;
}

.conteudo-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CORREÇÃO DE ALINHAMENTO PARA A LISTA DE BENEFÍCIOS */
.conteudo-texto ul {
    list-style: none;
    padding-left: 0;
}

.conteudo-texto ul li {
    margin-bottom: 15px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
}

.conteudo-texto ul li strong {
    font-weight: 700;
    color: var(--black);
    margin-right: 5px;
}

.conteudo-texto ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 2px;
    flex-shrink: 0;
}



.conteudo-especialidade .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondy-color);
    position: relative;
    padding-bottom: 20px;
}

.conteudo-especialidade .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}


.conteudo-texto h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.conteudo-texto ul {
    list-style: none;
    margin: 15px 0;
}

.conteudo-texto ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.conteudo-texto ul li i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.conteudo-imagem {
    flex: 1;
    text-align: center;
}

.conteudo-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(27, 75, 90, 0.15);
}

/* Tipos de Tratamentos Grid */

.tipos-aparelhos,
.tipos-tratamentos {
    padding: 60px 20px;
    background-color: #F8FAFB;
}

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

.tipo-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(27, 75, 90, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 75, 90, 0.2);
}

.tipo-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.tipo-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Casos de Sucesso */

.casos-sucesso {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

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

.caso-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(27, 75, 90, 0.1);
    transition: transform 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
}

.caso-imagem {
    overflow: hidden; /* Esconde o que ultrapassar */
    width: 100%;
    background-color: #F1F5F9;
}

.caso-imagem img {
    width: 100%;
    height: auto; /* Permite que a imagem se ajuste à sua proporção original */
    display: block;
}

.caso-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.caso-card p {
    padding: 0 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.caso-card .resultado {
    padding: 10px 20px 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Diferenciais */

.diferenciais {
    padding: 60px 20px;
    background-color: #F8FAFB;
}

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

.diferencial-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(27, 75, 90, 0.1);
}

.diferencial-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.diferencial-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Depoimentos */

.depoimentos {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

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

.depoimento {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(27, 75, 90, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.depoimento-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.depoimento-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.depoimento-author {
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Final */

.cta-final {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta-final h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-final .btn {
    background-color: rgb(255, 255, 255);
    color: var(--black);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
}

.cta-final .btn:hover {
    background-color: #F1F5F9;
    transform: scale(1.05);
}

/* Responsividade */

@media (max-width: 768px) {
    
    .conteudo-especialidade .section-title {
        font-size: 1.8rem;
    }
    
    .tipos-grid,
    .diferenciais-grid,
    .depoimentos-slider,
    .casos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
}


/* Como Iniciar Meu Tratamento */

.como-iniciar {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.como-iniciar .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secundary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.passo-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(27, 75, 90, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.passo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 75, 90, 0.2);
}

.passo-numero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(27, 75, 90, 0.2);
}

.passo-icon {
    margin-top: 20px;
    margin-bottom: 15px;
}

.passo-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

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

.passo-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-whatsapp-small {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp-small:hover {
    background-color: #1EBE5A;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-small i {
    margin-right: 8px;
}

/* Responsividade */

@media (max-width: 768px) {
    .como-iniciar .section-title {
        font-size: 1.8rem;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
    }
    
    .passo-card {
        padding: 25px;
    }
}

/* Estilos para a nova seção de 4 cards (COMO INICIAR MEU TRATAMENTO?) */
.processo-implante {
    background-color: var(--section-bg-light);
}

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

.step {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--medium-gray);
    text-align: center;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--section-bg-light);
}

.step i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    min-height: 50px;
}

.step p, .step ul, .step ol {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    text-align: left;
    margin-top: 15px;
    padding-left: 0;
}

.step ul li, .step ol li {
    margin-bottom: 5px;
    list-style-position: inside;
}

.step ul {
    list-style-type: disc;
    padding-left: 20px;
}

.step ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.step .btn-whatsapp {
    margin-top: 20px;
    display: block;
    width: 100%;
}

/* ===================================
   Estilos do Mapa Interativo Google Maps
   =================================== */

#map {
    width: 100%;
    height: 450px;
    border-radius: 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-map {
    width: 100%;
    height: 450px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Responsividade do mapa */
@media (max-width: 768px) {
    #map,
    .footer-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    #map,
    .footer-map {
        height: 300px;
    }
}

/* Customização da InfoWindow do Google Maps */
.gm-style .gm-style-iw-c {
    border-radius: 15px !important;
    padding: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
    max-height: none !important;
}

.gm-style-iw-tc::after {
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%) !important;
}

/* Botão de fechar da InfoWindow */
.gm-ui-hover-effect {
    top: 5px !important;
    right: 5px !important;
    width: 30px !important;
    height: 30px !important;
    opacity: 0.7 !important;
}

.gm-ui-hover-effect:hover {
    opacity: 1 !important;
}

/* Controles do mapa */
.gm-style button {
    border-radius: 8px !important;
}

.gm-style .gm-style-mtc button,
.gm-style .gm-style-mtc div {
    border-radius: 8px !important;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-icons a {
  font-size: 30px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons .fa-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-icons .fa-facebook {
  color: #1877F2; /* azul Facebook */
}

.social-icons .fa-tiktok {
  color: #000000; /* preto TikTok */
}

/* Efeito hover */
.social-icons a:hover {
  transform: scale(1.15);
}


