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

/* Sistema de Cores Padronizado - Bela Olhar */
:root {
    /* Cores Principais Rosa */
    --primary-color: #e91e63;        /* Rosa Principal */
    --primary-light: #f8bbd9;        /* Rosa Claro */
    --primary-dark: #ad1457;         /* Rosa Escuro */
    --primary-ultra-light: #fce4ec;  /* Rosa Muito Claro */
    
    /* Cores Secundárias Rosa */
    --secondary-color: #ec407a;      /* Rosa Secundário */
    --secondary-light: #f48fb1;      /* Rosa Médio Claro */
    --secondary-dark: #c2185b;       /* Rosa Médio Escuro */
    
    /* Cores de Destaque Rosa/Dourado */
    --accent-color: #ff6b9d;         /* Rosa Vibrante */
    --accent-light: #ffb3d1;         /* Rosa Suave */
    --accent-dark: #c2185b;          /* Rosa Profundo */
    
    /* Cores de Texto */
    --text-primary: #2d2d2d;         /* Texto Principal Escuro */
    --text-secondary: #424242;       /* Texto Secundário */
    --text-light: #616161;           /* Texto Claro */
    --text-muted: #757575;           /* Texto Suave */
    --text-white: #ffffff;           /* Texto Branco */
    
    /* Backgrounds */
    --bg-primary: #ffffff;           /* Fundo Branco */
    --bg-secondary: #fafafa;         /* Fundo Cinza Muito Claro */
    --bg-light: #f5f5f5;             /* Fundo Cinza Claro */
    --bg-rosa-light: #fce4ec;        /* Fundo Rosa Claro */
    --bg-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --bg-gradient-light: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    
    /* Bordas e Sombras */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --border-rosa: #f8bbd9;
    --shadow-sm: 0 2px 4px rgba(233, 30, 99, 0.1);
    --shadow-md: 0 4px 8px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 8px 16px rgba(233, 30, 99, 0.2);
    --shadow-xl: 0 16px 32px rgba(233, 30, 99, 0.25);
    
    /* Transições e Raios */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Tipografia Melhorada - Bela Olhar */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 3rem; 
    font-weight: 700;
    color: var(--text-primary);
}
h2 { 
    font-size: 2.4rem; 
    font-weight: 600;
    color: var(--text-primary);
}
h3 { 
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}
h4 { 
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
}

p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
    font-weight: 700;
}

/* Para navegadores que não suportam background-clip */
@supports not (-webkit-background-clip: text) {
    .highlight {
        color: var(--primary-color);
        text-shadow: 0 2px 4px rgba(233, 30, 99, 0.5);
    }
}

/* Botões Modernos */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--bg-primary), rgba(248, 187, 217, 0.05));
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 255, 255, 0.8));
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(255, 255, 255, 0.9));
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 1px 3px rgba(233, 30, 99, 0.3);
}

.logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(233, 30, 99, 0.2);
    animation: fadeInRight 1s ease 0.3s both;
}

/* Animações para a logo */
@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2); 
    }
}

.logo:hover i {
    animation: logoGlow 2s ease-in-out infinite;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) blur(1px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(236, 64, 122, 0.7));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
}

.hero-featured-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin: 0 auto;
    display: block;
}

.hero-text {
    color: var(--text-white) !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-text * {
    color: var(--text-white) !important;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--text-white) !important;
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Highlight específico para seção Hero */
.hero-text .highlight {
    color: var(--text-white) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: var(--text-white) !important;
    background-clip: initial !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Botões específicos para a seção Hero - melhor contraste */
.hero .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.95);
}

.hero .btn-primary:hover {
    background: var(--text-white);
    color: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--text-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white) !important;
    border-color: var(--text-white);
    backdrop-filter: blur(10px);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-placeholder {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-placeholder i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 1px 8px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    border-color: rgba(102, 126, 234, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Estilos para imagens dos serviços */
.service-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card h3 {
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

/* About */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

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

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-placeholder {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-placeholder i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* About Image Styles */
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(236, 64, 122, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.certification-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.certification-badge i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.certification-badge p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Location */
.location {
    padding: 80px 0;
    background: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(145deg, var(--bg-primary), var(--bg-secondary));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

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

.info-card i {
    font-size: 1.75rem;
    color: var(--primary-color);
    min-width: 40px;
    margin-top: 0.25rem;
}

.info-card h4 {
    margin-bottom: 0.25rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ec407a 100%);
    color: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
    border: 3px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-section .btn i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo i {
    color: var(--primary-color);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.5));
}

.footer-brand .logo span {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.footer-brand p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-info {
    padding-left: 1rem;
}

.footer-info h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
}

.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-info p {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.95;
}

.footer-info i {
    color: var(--primary-color);
    min-width: 20px;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.5));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(233, 30, 99, 0.3);
    color: #ffffff;
    font-size: 1rem;
    position: relative;
    opacity: 0.85;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 450px;
    height: 700px;
    max-height: 80vh;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 1001;
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.chat-header {
    background: var(--bg-gradient);
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chat-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.chat-avatar i {
    font-size: 2rem;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-info p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

.chat-messages {
    flex: 1;
    padding: 1.25rem;
    max-height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.message-content {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    max-width: 80%;
}

.user-message .message-content {
    background: var(--primary-color);
    color: white !important;
}

.user-message .message-content p {
    color: white !important;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Estilos para conteúdo Markdown no chat */
.message-content h1,
.message-content h2,
.message-content h3,
.message-content h4,
.message-content h5,
.message-content h6 {
    margin: 0.5rem 0 0.25rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.message-content h2 {
    font-size: 1rem;
    color: inherit;
}

.message-content h3 {
    font-size: 0.95rem;
    color: inherit;
}

.message-content ul,
.message-content ol {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
}

.message-content li {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.message-content strong {
    font-weight: 600;
    color: inherit;
}

.message-content em {
    font-style: italic;
}

.message-content code {
    background: rgba(0,0,0,0.1);
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.user-message .message-content code {
    background: rgba(255,255,255,0.2);
}

.message-content blockquote {
    border-left: 3px solid var(--primary-light);
    margin: 0.5rem 0;
    padding-left: 0.75rem;
    font-style: italic;
    opacity: 0.9;
}

/* Ajustes específicos para mensagens do bot */
.bot-message .message-content h2 {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bot-message .message-content h3 {
    color: var(--primary-dark);
    margin-top: 0.75rem;
}

/* Emojis e ícones nas listas */
.message-content li::marker {
    color: var(--primary-color);
}

/* Melhor espaçamento para listas com emojis */
.message-content li {
    list-style: none;
    position: relative;
    padding-left: 0;
    margin: 0.3rem 0;
}

/* Estilos específicos para markdown */
.message-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0.5rem 0 0.3rem 0;
}

.message-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.message-content blockquote {
    border-left: 3px solid var(--primary-color);
    background: rgba(233, 30, 99, 0.05);
    margin: 0.5rem 0;
    padding: 0.5rem 0.75rem;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
}
.message-content ul li {
    list-style: none;
    position: relative;
}

.message-content ul li:before {
    content: "✨";
    position: absolute;
    left: -1rem;
}

/* Chat Suggestions */
.chat-suggestions {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.suggestions-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0;
}

.suggestion-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-align: left;
}

.suggestion-btn:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

.suggestion-btn i {
    color: white;
    font-size: 0.9rem;
    min-width: 16px;
}

.suggestion-btn:hover i {
    color: white;
}

.chat-input {
    padding: 1.25rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.75rem;
    background: var(--bg-primary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.chat-input input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background: var(--bg-secondary);
    transition: var(--transition-normal);
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.chat-input button {
    padding: 0.875rem 1.25rem;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.chat-input button:hover {
    background: var(--primary-dark);
}

.chat-loading {
    padding: 1rem;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.loading-dots {
    display: flex;
    gap: 3px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

/* Chat Button - Power-Up Style */
.chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4), 0 0 0 0 rgba(255, 107, 107, 0.7);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6), 0 0 0 10px rgba(255, 107, 107, 0.1);
    animation-play-state: paused;
}

.chat-button:active {
    transform: scale(1.05) translateY(0px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4), 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4), 0 0 0 15px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4), 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: var(--text-dark);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Salon Presentation Section */
.salon-presentation {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-rosa-light) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
}

.salon-presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.salon-gallery {
    margin: 3rem 0;
}

.gallery-item {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Estilo específico para a imagem principal da galeria */
.gallery-item.main-image {
    margin-bottom: 3rem;
}

.gallery-item.main-image img {
    filter: brightness(0.9) contrast(1.05);
    transition: all 0.4s ease;
}

.gallery-item.main-image:hover img {
    filter: brightness(0.85) contrast(1.1);
    transform: scale(1.02);
}

.gallery-item .image-placeholder {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-item .image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.gallery-item .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-item .image-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-item .image-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-item .image-placeholder p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.main-image {
    margin-bottom: 3rem;
}

.main-image .image-placeholder {
    padding: 4rem;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
}

.main-image .image-placeholder i {
    font-size: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Estilos para imagens reais da galeria */
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    filter: saturate(1.1) brightness(1.05);
}

.gallery-item.main-image img {
    height: 320px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), transparent, rgba(233, 30, 99, 0.2));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

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

/* Overlay elegante e sutil para mostrar as imagens */
.gallery-item.main-image .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
}

.gallery-item.main-image:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(233, 30, 99, 0.3), transparent 60%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 70%);
    color: var(--text-white);
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(233, 30, 99, 0.25), transparent 70%);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.gallery-overlay p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
    font-weight: 300;
    line-height: 1.3;
    opacity: 0.9;
}

/* Salon Info Cards */
.salon-info {
    margin-top: 4rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.info-card {
    background: linear-gradient(145deg, var(--bg-primary), var(--bg-secondary));
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
    border-color: var(--primary-light);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
    text-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
/* Responsividade */
@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .info-card {
        padding: 2rem;
        min-height: 180px;
    }

    .info-card i {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* Mobile First Approach */
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Logo responsiva para mobile */
    .logo {
        font-size: 1.3rem;
        gap: 8px;
        padding: 6px 12px;
    }
    
    .logo i {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-featured-image {
        max-width: 300px;
        height: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

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

    .footer-brand {
        max-width: none;
    }

    .footer-brand .logo {
        font-size: 1.6rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-brand .logo i {
        font-size: 1.8rem;
    }

    .footer-brand p {
        font-size: 1rem;
        text-align: center;
    }

    .footer-info {
        padding-left: 0;
    }

    .footer-info h4 {
        font-size: 1.3rem;
        text-align: center;
    }

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

    .footer-info p {
        font-size: 1rem;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        font-size: 0.95rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 2.5rem 1.5rem;
        margin-top: 1.5rem;
        border-radius: 20px;
    }

    .cta-section h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }

    .cta-section .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .chat-widget {
        width: 95vw;
        right: 2.5vw;
        left: 2.5vw;
        height: 85vh;
        max-height: 85vh;
        bottom: 10px;
    }

    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    /* Sections padding */
    .services,
    .about,
    .location {
        padding: 60px 0;
    }

    /* Salon Presentation Mobile */
    .salon-presentation {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item .image-placeholder {
        padding: 2rem;
    }

    .main-image .image-placeholder {
        padding: 3rem;
    }

    .main-image .image-placeholder i {
        font-size: 3rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }

    .info-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }

    .service-card,
    .info-card {
        padding: 1.5rem;
    }

    .chat-messages {
        max-height: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for chat */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 2px;
}

/* Focus states for accessibility */
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dots span {
    height: 8px;
    width: 8px;
    background: #666;
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Print styles */
@media print {
    .header,
    .chat-widget,
    .chat-button {
        display: none;
    }
}