/* Estilos Gerais */
:root {
    --primary-color: #1B4B5A; /* Azul escuro mais próximo ao site de referência */
    --secondary-color: #4ECDC4; /* 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, #1B4B5A, #2D6A75); /* Gradiente para fundos premium */
    --card-bg: #FFFFFF;
    --section-bg-light: #F8FAFB;
    --section-bg-dark: #1B4B5A;
    --teal-primary: #0F766E; /* Tom de verde-azulado mais escuro */
    --teal-secondary: #14B8A6; /* Tom de verde-azulado médio */
    --teal-light: #5EEAD4; /* Tom de verde-azulado claro */
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-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(--white);
    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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    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, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
    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 Section */
.hero {
    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;
    position: relative;
    overflow: hidden;
}

.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;
}

.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;
}

.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;
}

.quem-somos-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);
}

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

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

/* 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: #FFD700;
    margin-bottom: 15px;
}

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

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

/* 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;
}

/* Animações */
.tratamento-card, .quem-somos-image, .metodo-image, .depoimento {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tratamento-card.animate, .quem-somos-image.animate, .metodo-image.animate, .depoimento.animate {
    opacity: 1;
    transform: translateY(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);
}

/* Efeitos nas imagens */
.quem-somos-image img, .tratamentos-image img, .metodo-image img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quem-somos-image:hover img, .tratamentos-image:hover img, .metodo-image:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Efeito parallax suave */
.hero {
    background-attachment: fixed;
}

/* 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;
    }
}

