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

/* Variables - Paleta Moderna e Profissional */
:root {
    /* Cores Principais da Nova Paleta */
    --primary-green: #fdcfe9;           /* Rosa suave principal */
    --primary-blue: #541212;            /* Terracota forte */
    --primary-nude: #fef7fb;            /* Rosa extremamente suave */
    
    /* Variações da Paleta Principal */
    --green-dark: #f4c4e0;             /* Rosa escuro */
    --green-darker: #eab4d4;           /* Rosa mais escuro */
    --green-light: #fdd9f0;            /* Rosa claro */
    --green-lighter: #fee4f5;          /* Rosa mais claro */
    --green-pale: #fefafc;             /* Rosa pálido */
    
    --blue-dark: #6a1818;              /* Terracota escuro */
    --blue-darker: #561414;            /* Terracota mais escuro */
    --blue-light: #922020;             /* Terracota claro */
    --blue-lighter: #a62424;           /* Terracota mais claro */
    --blue-pale: #f2e8e8;              /* Terracota pálido */
    
    --nude-dark: #f8d4e8;              /* Rosa nude escuro */
    --nude-darker: #f4c4e0;            /* Rosa nude mais escuro */
    --nude-light: #fce8f4;             /* Rosa nude claro */
    --nude-lighter: #fef0f8;           /* Rosa nude mais claro */
    --nude-pale: #fefbfc;              /* Rosa nude pálido */
    
    /* Cores Neutras Modernas */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* WhatsApp (mantém original) */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20BA5A;
    --whatsapp-light: #E8F5E8;
    
    /* Accent Soft */
    --accent-soft: var(--primary-green);
    
    /* Cores de Texto */
    --text-primary: var(--blue-darker);
    --text-secondary: var(--blue-dark);
    --text-accent: var(--primary-green);
    --text-muted: var(--gray-500);
    --text-light: var(--gray-400);
    --text-white: var(--white);
    
    /* Cores de Fundo */
    --bg-primary: var(--white);
    --bg-secondary: var(--nude-pale);
    --bg-accent: var(--nude-light);
    --bg-hero: var(--primary-green);
    --bg-section-alt: var(--green-pale);
    --bg-card: var(--white);
    
    /* Sombras Modernas */
    --shadow-sm: 0 1px 2px 0 rgba(84, 115, 133, 0.05);
    --shadow: 0 1px 3px 0 rgba(84, 115, 133, 0.1), 0 1px 2px 0 rgba(84, 115, 133, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(84, 115, 133, 0.1), 0 2px 4px -1px rgba(84, 115, 133, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(84, 115, 133, 0.1), 0 4px 6px -2px rgba(84, 115, 133, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(84, 115, 133, 0.1), 0 10px 10px -5px rgba(84, 115, 133, 0.04);
    
    /* Outros */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* Base Styles */
html, body {
  overflow-x: auto !important;
  overflow-y: auto !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #fef7fb;
    overflow-x: hidden;
    font-weight: 400;
    padding-top: var(--header-height);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { 
    font-size: clamp(2.2rem, 5vw, 3.8rem); 
    font-weight: 700;
}
h2 { 
    font-size: clamp(1.6rem, 4vw, 2.8rem); 
    font-weight: 600;
}
h3 { 
    font-size: clamp(1.3rem, 3vw, 1.9rem); 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--green-pale);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-bottom: 18px;
}

.header-title-block {
  margin-right: 2.5rem;
  min-width: 220px;
  flex-shrink: 0;
}

.nav-desktop {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

/* Desktop Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--blue-dark);
    background: var(--blue-pale);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--blue-pale);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(84, 115, 133, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile {
  z-index: 10000;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--green-pale);
}

.mobile-logo .logo-img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--blue-pale);
    color: var(--blue-dark);
}

.mobile-nav-list {
    list-style: none;
    padding: 30px 0;
    flex: 1;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 25px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--blue-dark);
    background: var(--blue-pale);
    border-left-color: var(--primary-blue);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--green-pale);
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-hover) 100%);
    color: var(--text-white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-cta::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.5s;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, var(--whatsapp-hover) 0%, #1EA952 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-cta:hover::before {
    left: 100%;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-hover) 50%, #1EA952 100%);
    color: var(--text-white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    animation: buttonGlow 3s ease-in-out infinite;
}

.btn-whatsapp::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.5s;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--whatsapp-hover) 0%, #1EA952 50%, #1A9F4A 100%);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

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

.btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-center {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    width: fit-content;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero Section */
.hero {
    background: #fef7fb !important;
    color: var(--text-primary);
    padding: 40px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    display: none !important;
}

.hero-content::before,
.hero-content::after,
.treatment::before,
.treatment::after,
.schedule-image::before,
.schedule-image::after,
.hero-photo-decoration::before {
    display: none !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    color: var(--primary-blue);
    text-shadow: none;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

.hero-title::before {
    display: none !important;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text {
    max-width: 600px;
}

.hero-quote {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.95) 100%
        );
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 30px 25px;
    margin: 0 0 3rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-quote::before {
    content: '"';
    position: absolute;
    top: 0px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.25;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.hero-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-style: normal;
    position: relative;
}

.hero-quote cite::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--primary-blue);
    transform: translateY(-50%);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-container {
    position: relative;
    display: inline-block;
}

/* Remover bordas das imagens */
.hero-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: none;
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(84, 115, 133, 0.2);
}

.hero-photo-decoration {
    display: none !important;
}

.schedule-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: var(--green-dark);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
}

.schedule-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: none;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fef7fb !important;
}

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

.faq .section-title-center {
    margin-bottom: 4rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 25px 30px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-icon {
    transition: var(--transition);
    font-size: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
}

/* Prevenir detecção automática de links no iOS */
.footer * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.footer a {
    -webkit-touch-callout: default;
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-section-title {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-soft);
    border-radius: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--text-white);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-soft);
}

/* Prevenir detecção automática de links para informações específicas */
.contact-item span {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    pointer-events: none;
    color: var(--text-white);
}

.footer-copyright p {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    pointer-events: none;
    color: var(--gray-300);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Degradê do Instagram para o ícone */
.social-link .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
}



/* Two-column layout for desktop */
@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    
    .footer-copyright {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-hover) 100%);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.whatsapp-float-btn::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.5s;
}

.whatsapp-float-btn:hover {
    background: linear-gradient(135deg, var(--whatsapp-hover) 0%, #1EA952 100%);
    color: var(--text-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

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

.whatsapp-float-text {
    display: none;
}

.whatsapp-float-btn:hover .whatsapp-float-text {
    display: block;
}

/* WhatsApp Mini Chat */
.whatsapp-mini-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
    display: none;
}

.whatsapp-mini-chat.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 100;
}

/* Esconde o botão flutuante quando o chat está ativo */
.whatsapp-float.hide {
  display: none !important;
}

/* Alinhar mini chat fixo ao fundo da tela */
.whatsapp-mini-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  margin: 0;
  width: 100%;
  max-width: 350px;
  z-index: 9999;
  box-shadow: var(--shadow-xl);
}

.chat-header {
    background: var(--whatsapp-green);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Corrigir avatar do mini chat WhatsApp para proporção 1:1 e centralização */
.chat-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.chat-info h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255,255,255,0.2);
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 15px;
}

.chat-message p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-footer {
    padding: 0 20px 20px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-hover) 100%);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.chat-btn::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.5s;
}

.chat-btn:hover {
    background: linear-gradient(135deg, var(--whatsapp-hover) 0%, #1EA952 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.chat-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Animações Avançadas */
@keyframes morphFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.05);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(0.95);
        border-radius: 70% 30% 40% 60% / 50% 60% 40% 50%;
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.02);
        border-radius: 30% 70% 60% 40% / 30% 70% 50% 60%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
}

@keyframes textFlash {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 300% 0;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(126, 28, 28, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(126, 28, 28, 0.6), 0 0 30px rgba(126, 28, 28, 0.4);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animation Classes */
.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-text-flash {
    animation: textFlash 3s ease-in-out infinite;
}

/* Estilo para o bloco de título do header (desktop) */
.header-title-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-right: 32px;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.1;
}

.site-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--primary-blue);
  margin: 0;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.5px;
  /* Previne que o CRP seja reconhecido como link */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Mobile */
.header-title-block-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

/* Ajuste do tamanho do título para desktop */
.header-title-block .site-title {
  font-size: 1.2rem;
}

/* Ajuste do subtítulo para desktop */
.header-title-block .site-subtitle {
  font-size: 0.95rem;
}

/* Alinhar verticalmente título e menu no header */
.header-content {
  align-items: center;
  height: var(--header-height);
}

/* Espaçamento entre título e menu */
.header-title-block {
  margin-right: 2.5rem;
}

/* Ajuste para o menu desktop centralizar verticalmente */
.nav-desktop {
  align-items: center;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding: 60px 0 60px;
        background-attachment: scroll;
        min-height: auto;
    }
    
    .hero-content {
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
        order: 1;
        grid-column: 1;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        max-width: 100%;
        order: 3;
    }
    
    .hero-image {
        order: 2;
        margin-top: 30px;
    }
    
    .hero-photo {
        width: 300px;
        height: 350px;
    }
    
    .hero-photo-decoration {
        display: none !important;
    }
    
    .hero-photo-decoration::before {
        display: none !important;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-quote {
        font-size: 1rem;
        padding: 20px;
        margin-bottom: 2rem;
    }
    
    .hero-quote::before {
        font-size: 3rem;
        left: 10px;
    }
    
    .hero-quote cite {
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image {
        display: block !important;
        grid-column: 1 / -1;
        order: 2;
        margin-top: 30px;
    }
    
    .about-text {
        max-width: 100%;
        width: 100%;
        grid-column: 1 / -1;
        order: 1;
    }
    
    .schedule-content {
        gap: 40px;
    }
    
    .schedule-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .schedule-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-text {
        order: 1;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
    }
    
    .schedule-image {
        display: block !important;
        grid-column: 1 / -1;
        order: 2;
        margin-top: 30px;
    }
    
    .benefits-image {
        margin: 30px 0;
    }
    
    .benefits-image img {
        max-width: 100%;
        height: auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 35px 25px;
        border: 2px solid rgba(126, 28, 28, 0.15);
    }
    
    .benefit-card:hover,
    .benefit-card:active {
        border-color: var(--primary-blue);
        box-shadow: 0 6px 25px rgba(126, 28, 28, 0.2);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title-center {
        font-size: 2.2rem;
    }
    
    .about, .schedule, .treatment {
        padding: 60px 0;
    }
    
    .about {
        padding: 0 0 60px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .whatsapp-mini-chat {
        width: 280px;
        right: 25px;
        bottom: 35px;
    }
    .benefits-image img {
        max-width: 350px !important;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-text {
        order: 1;
        width: 100%;
        max-width: 100%;
        grid-column: 1 / -1;
    }
    
    .about-image {
        display: block !important;
        order: 2;
        width: 100%;
        height: auto;
        margin: 20px 0;
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
  .header-title-block {
    align-items: flex-start;
    margin-right: 0;
  }
  .site-title {
    font-size: 1.3rem;
  }
  .site-subtitle {
    font-size: 0.9rem;
    /* Previne que o CRP seja reconhecido como link */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        padding-top: var(--header-height);
    }
    
    .header {
        height: var(--header-height);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-mobile {
        width: 80%;
        right: -80%;
    }
    
    h1, h2, h3, h4, h5, h6,
    .hero-title,
    .section-title,
    .section-title-center {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    
    .site-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .section-title, .section-title-center {
        margin-bottom: 1.2rem;
    }
    
    .hero-photo-decoration {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }
    
    .hero-photo-decoration::before {
        width: 40px;
        height: 40px;
    }
    
    .hero-quote {
        padding: 20px 15px;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-quote::before {
        font-size: 2.5rem;
        top: 0px;
        left: 8px;
    }
    
    .hero-quote cite {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
        border: 2px solid rgba(126, 28, 28, 0.15);
    }
    
    .benefit-card:hover,
    .benefit-card:active {
        border-color: var(--primary-blue);
        box-shadow: 0 6px 25px rgba(126, 28, 28, 0.2);
    }
    
    .treatment-content p {
        text-align: center;
        font-size: 1.05rem;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }
    
    .schedule-image {
        display: block !important;
        grid-column: 1 / -1;
        order: 2;
        margin-top: 30px;
    }
    
    .schedule-text {
        order: 1;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
    }
    
    .about-image {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .about-text {
        max-width: 100%;
        width: 100%;
        grid-column: 1 / -1;
    }
    
    .site-title {
      font-size: 1.05rem;
    }
    .site-subtitle {
      font-size: 0.75rem;
      /* Previne que o CRP seja reconhecido como link */
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }
    .site-title {
      font-size: 0.85rem;
    }
    .site-subtitle {
      font-size: 0.62rem;
      /* Previne que o CRP seja reconhecido como link */
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }
}

/* About Section */
.about {
    padding: 20px 0 20px 0;
    background: #fef7fb !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    margin: 2rem 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.about-description p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.about-image img {
    max-width: 80%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #fef7fb !important;
}

.benefits-image {
    text-align: center;
    margin: 50px 0;
    display: none; /* Hidden by default on desktop */
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.benefits-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(126, 28, 28, 0.15);
}

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

.benefit-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(126, 28, 28, 0.08), 0 2px 8px rgba(126, 28, 28, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(126, 28, 28, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(126, 28, 28, 0.15), 0 4px 15px rgba(126, 28, 28, 0.1);
    border-color: var(--primary-blue);
}

.benefit-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--primary-green);
    background: var(--green-pale);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: var(--green-dark);
    background: var(--green-light);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.section-title-center {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--text-primary);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Treatment Section */
.treatment {
    padding: 40px 0;
    background: #fef7fb !important;
    text-align: center;
    position: relative;
}

.treatment::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.treatment::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.treatment .section-title-center {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.treatment-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.treatment-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.8;
}

/* Schedule Section */
.schedule {
    padding: 40px 0;
    background: #fef7fb !important;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.schedule-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--blue-darker);
    font-family: 'Playfair Display', serif;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    font-weight: 600;
}

.schedule-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.schedule-text h2 {
    display: none;
}

.schedule-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--blue-darker);
    line-height: 1.7;
}

.schedule-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.schedule-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Mobile elements - hidden by default */
.mobile-title,
.mobile-image,
.mobile-formation-content {
    display: none;
}

/* Desktop elements - visible by default */
.desktop-title,
.desktop-image {
    display: block;
}

@media (max-width: 768px) {
    /* Mobile elements - visible on mobile */
    .mobile-title,
    .mobile-image,
    .mobile-formation-content {
        display: block;
    }
    
    /* Desktop elements - hidden on mobile */
    .desktop-title,
    .desktop-image {
        display: none !important;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .mobile-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-image {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .mobile-image img {
        max-width: 70%;
        margin-top: 50px;
        height: auto;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-lg);
    }
    
    .mobile-formation-content {
        margin: 30px 0;
        padding: 0 20px;
        text-align: center;
    }
    
    .mobile-formation-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
        line-height: 1.7;
        text-align: left;
    }
    
    .mobile-formation-content p:last-child {
        margin-bottom: 0;
    }
    
    .benefits-image {
        display: block; /* Visible on mobile */
        margin: 30px 0;
    }
    
    .faq-item {
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
        margin-bottom: 15px;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section {
        gap: 15px;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-section-title {
        font-size: 1rem;
        text-align: left;
    }
    
    .footer-section-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-contact {
        gap: 2px;
        align-items: flex-start;
    }
    
    .contact-item {
        font-size: 0.95rem;
        padding-bottom: 6px;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .social-link {
        font-size: 0.95rem;
        align-self: flex-start;
    }
    
    .footer-copyright {
        text-align: left;
    }
}