/* Reset e configurações básicas */
/* Otimizações de Imagem */
img {
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Placeholder para imagens carregando */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

/* Screen Reader Only - Acessibilidade */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Override Bootstrap para usar nossa paleta de cores */
:root {
    --bs-primary: #B87474;
    --bs-primary-rgb: 184, 116, 116;
    --bs-secondary: #CBAF87;
    --bs-secondary-rgb: 203, 175, 135;
    --bs-dark: #1C1C1C;
    --bs-dark-rgb: 28, 28, 28;
}

.btn-primary {
    background-color: var(--rosa-queimado) !important;
    border-color: var(--rosa-queimado) !important;
}

.btn-primary:hover {
    background-color: #a06565 !important;
    border-color: #a06565 !important;
}

.text-primary {
    color: var(--rosa-queimado) !important;
}

.bg-primary {
    background-color: var(--rosa-queimado) !important;
}

.text-warning {
    color: var(--dourado-fosco) !important;
}

:root {
    /* Paleta de cores do Instituto FS */
    --preto-carvao: #1C1C1C;
    --cinza-chumbo: #3E3E3E;
    --cinza-claro-perolado: #DADADA;
    --bege-rosado: #F1E4E1;
    --rosa-queimado: #B87474;
    --dourado-fosco: #CBAF87;
    
    /* Cores auxiliares */
    --branco: #FFFFFF;
    --preto: #000000;
    --sombra: rgba(28, 28, 28, 0.1);
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    

}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--preto-carvao);
    background-color: var(--branco);
}

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

/* Header e Navegação */
.header {
    background-color: var(--preto-carvao);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--sombra);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--dourado-fosco);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 90px;
    width: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Torna o logo branco */
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--cinza-claro-perolado);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--dourado-fosco);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--cinza-claro-perolado);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section Moderno */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 116, 116, 0.1) 0%, rgba(203, 175, 135, 0.1) 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(184, 116, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(203, 175, 135, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}



.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dourado-fosco);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero::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 ease;
}

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

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.2), rgba(203, 175, 135, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto-carvao);
}

.card-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

.hero-content {
    color: var(--branco);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--cinza-claro-perolado);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--bege-rosado) 0%, var(--rosa-queimado) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px var(--sombra);
}

.hero-placeholder i {
    font-size: 5rem;
    color: var(--preto-carvao);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--rosa-queimado);
    color: var(--branco);
    border-color: var(--rosa-queimado);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--rosa-queimado);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 116, 116, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dourado-fosco);
    border-color: var(--dourado-fosco);
}

.btn-secondary:hover {
    background-color: var(--dourado-fosco);
    color: var(--preto-carvao);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--rosa-queimado);
    border-color: var(--rosa-queimado);
}

.btn-outline:hover {
    background-color: var(--rosa-queimado);
    color: var(--branco);
    transform: translateY(-2px);
}

/* Seções gerais */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--preto-carvao);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--cinza-chumbo);
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    background-color: var(--bege-rosado);
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-text h3 {
    color: var(--preto-carvao);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.sobre-text h3:first-child {
    margin-top: 0;
}

.sobre-text p {
    color: var(--cinza-chumbo);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sobre-text ul {
    list-style: none;
    padding-left: 0;
}

.sobre-text li {
    color: var(--cinza-chumbo);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.sobre-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rosa-queimado);
    font-weight: bold;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--branco);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--sombra);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--sombra);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rosa-queimado);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* Cursos Section */
.cursos {
    background-color: var(--branco);
}

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

.curso-card {
    background-color: var(--branco);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--sombra);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cinza-claro-perolado);
}

.curso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--sombra);
    border-color: var(--dourado-fosco);
}

.curso-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.curso-icon::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 ease;
}

.curso-icon:hover::before {
    left: 100%;
}

.curso-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.curso-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 1;
    transition: all 0.3s ease;
}

.curso-icon:hover i {
    transform: scale(1.1);
}

.curso-card h3 {
    color: var(--preto-carvao);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.curso-card p {
    color: var(--cinza-chumbo);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.curso-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.curso-card li {
    color: var(--cinza-chumbo);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.curso-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dourado-fosco);
    font-weight: bold;
}

/* Equipe Section */
.equipe {
    background-color: var(--cinza-claro-perolado);
}

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

.membro-card {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--sombra);
    transition: var(--transition);
}



.membro-foto {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--bege-rosado) 0%, var(--rosa-queimado) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.membro-foto i {
    font-size: 3rem;
    color: var(--preto-carvao);
}

.membro-card h3 {
    color: var(--preto-carvao);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.membro-cargo {
    color: var(--rosa-queimado);
    font-weight: 500;
    margin-bottom: 1rem;
}

.membro-descricao {
    color: var(--cinza-chumbo);
    line-height: 1.6;
}

/* Contato Section */
.contato {
    background-color: var(--branco);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bege-rosado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    color: var(--rosa-queimado);
    font-size: 1.25rem;
}

.contato-item h4 {
    color: var(--preto-carvao);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-item p {
    color: var(--cinza-chumbo);
    line-height: 1.6;
}

.contato-form {
    background-color: var(--bege-rosado);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cinza-claro-perolado);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rosa-queimado);
    box-shadow: 0 0 0 3px rgba(184, 116, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--preto-carvao);
    color: var(--cinza-claro-perolado);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--dourado-fosco);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--cinza-claro-perolado);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--dourado-fosco);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--cinza-chumbo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cinza-claro-perolado);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--dourado-fosco);
    color: var(--preto-carvao);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--cinza-chumbo);
    padding-top: 1rem;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Header e Navegação */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--preto-carvao);
        width: 100%;
        height: 0;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px var(--sombra);
        padding: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        height: auto;
        padding: 2rem 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-logo h2 {
        font-size: 1rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .logo-img {
        height: 25px;
        width: auto;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* Hero Sections - Melhorias Gerais */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats .stat-item {
        padding: 1rem;
        min-width: auto;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem !important;
    }
    
    .hero-stats .stat-label {
        font-size: 0.9rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .hero-main-image {
        height: 300px !important;
        width: 100%;
        object-fit: cover;
    }
    
    .floating-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 2rem;
        min-width: auto !important;
        width: 100% !important;
        max-width: 280px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-card .card-content h4 {
        font-size: 1rem !important;
    }
    
    .floating-card .card-content p {
        font-size: 0.85rem !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 15px;
    }
    
    /* Responsividade Hero Cursos */
    .hero-cursos-moderno {
        min-height: 70vh;
        padding-top: 100px;
    }
    
    .hero-cursos-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-cursos-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    .hero-cursos-features {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .feature-item {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
        width: auto;
    }
    
    .hero-cursos-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-cursos-facial,
    .btn-cursos-corporal {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .stats-card {
        padding: 1.5rem;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item-moderno {
        padding: 1rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .stat-number-moderno {
        font-size: 2rem !important;
    }
    
    .stat-label-moderno {
        font-size: 0.9rem !important;
    }
    
    /* Responsividade Hero Sobre */
    .hero-sobre-moderno {
        min-height: 70vh;
        padding-top: 100px;
    }
    
    .hero-sobre-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-sobre-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    .hero-sobre-features {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .feature-item-sobre {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
        width: auto;
    }
    
    .hero-sobre-stats {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
    }
    
    .stat-item-sobre {
        padding: 1rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        min-width: auto;
    }
    
    .stat-number-sobre {
        font-size: 2rem !important;
    }
    
    .stat-label-sobre {
        font-size: 0.9rem !important;
    }
    
    .hero-sobre-main-image {
        height: 300px !important;
        width: 100%;
        object-fit: cover;
    }
    
    .floating-card-sobre {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 2rem;
        min-width: auto !important;
        width: 100% !important;
        max-width: 280px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Responsividade Seções */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .card-moderno {
        padding: 2rem 1.5rem;
    }
    
    .card-icon-moderno {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title-moderno {
        font-size: 1.3rem;
    }
    
    /* Responsividade Timeline */
    .timeline-moderno::before {
        left: 25px;
    }
    
    .timeline-item {
        gap: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-year {
        font-size: 1.3rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    /* Responsividade Hero Tratamentos */
    .hero-tratamentos-moderno {
        min-height: 70vh;
        padding-top: 100px;
    }
    
    .hero-tratamentos-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-tratamentos-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    .hero-tratamentos-features {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .feature-item-tratamentos {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
        width: auto;
    }
    
    .hero-tratamentos-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-tratamentos-facial,
    .btn-tratamentos-corporal {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .hero-tratamentos-main-image {
        height: 300px !important;
        width: 100%;
        object-fit: cover;
    }
    
    .floating-card-tratamentos {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 2rem;
        min-width: auto !important;
        width: 100% !important;
        max-width: 280px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Responsividade Cards de Tratamento */
    .tratamento-image {
        height: 200px;
    }
    
    .tratamento-content {
        padding: 1.5rem;
    }
    
    .tratamento-title {
        font-size: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Responsividade Hero Contato */
    .hero-contato-moderno {
        min-height: 70vh;
        padding-top: 100px;
    }
    
    .hero-contato-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-contato-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    .hero-contato-features {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .feature-item-contato {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
        width: auto;
    }
    
    .hero-contato-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-contato-whatsapp,
    .btn-contato-phone {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .hero-contato-main-image {
        height: 300px !important;
        width: 100%;
        object-fit: cover;
    }
    
    .floating-card-contato {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 2rem;
        min-width: auto !important;
        width: 100% !important;
        max-width: 280px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Responsividade Formulário */
    .formulario-moderno {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .form-control-moderno,
    .form-select-moderno {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .form-label-moderno {
        font-size: 0.95rem;
    }
    
    .btn-form-submit {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* Responsividade Info Cards */
    .info-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-content h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .info-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .btn-social {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Responsividade Cards de Tratamento */
    .tratamento-image {
        height: 200px;
    }
    
    .tratamento-content {
        padding: 1.5rem;
    }
    
    .tratamento-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .tratamento-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-stats .stat-item {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-main-image {
        height: 350px;
    }
    
    .floating-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .hero-placeholder i {
        font-size: 4rem;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 3rem;
        padding: 0 30px;
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-main-image {
        height: 400px;
    }
    
    .floating-card {
        min-width: 200px;
        padding: 1rem;
    }
    
    .floating-card .card-content h4 {
        font-size: 0.9rem;
    }
    
    .floating-card .card-content p {
        font-size: 0.8rem;
    }
    
    .cursos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Tablet Hero Cursos */
    .hero-cursos-moderno {
        min-height: 75vh;
    }
    
    .hero-cursos-title {
        font-size: 3.5rem;
    }
    
    .hero-cursos-features {
        gap: 1.5rem;
    }
    
    .stats-card {
        padding: 1.8rem;
    }
    
    .stat-number-moderno {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    /* Container e espaçamentos */
    .container {
        padding: 0 10px;
    }
    
    /* Header e navegação */
    .nav-logo h2 {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .logo-img {
        height: 20px;
        width: auto;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    /* Hero Sections */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    .hero-cursos-title,
    .hero-sobre-title,
    .hero-tratamentos-title,
    .hero-contato-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-cursos-subtitle,
    .hero-sobre-subtitle,
    .hero-tratamentos-subtitle,
    .hero-contato-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    /* Botões */
    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-hero,
    .btn-cursos-facial,
    .btn-cursos-corporal,
    .btn-tratamentos-facial,
    .btn-tratamentos-corporal,
    .btn-contato-whatsapp,
    .btn-contato-phone,
    .btn-form-submit {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Features */
    .feature-item,
    .feature-item-sobre,
    .feature-item-tratamentos,
    .feature-item-contato {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        min-width: auto;
        width: auto;
    }
    
    /* Cards e elementos */
    .curso-card,
    .membro-card,
    .tratamento-card {
        margin-bottom: 1.5rem;
    }
    
    .card-moderno {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .card-title-moderno {
        font-size: 1.1rem !important;
    }
    
    /* Formulários */
    .formulario-moderno {
        padding: 1.2rem;
        margin: 0 10px;
    }
    
    .form-control-moderno,
    .form-select-moderno {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .form-label-moderno {
        font-size: 0.9rem;
    }
    
    /* Imagens */
    .hero-placeholder {
        height: 180px;
    }
    
    .hero-placeholder i {
        font-size: 2.5rem;
    }
    
    .hero-main-image,
    .hero-cursos-main-image,
    .hero-sobre-main-image,
    .hero-tratamentos-main-image,
    .hero-contato-main-image {
        height: 250px !important;
    }
    
    /* Tipografia */
    .display-4 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
    
    .lead {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Cards */
    .card-body {
        padding: 1rem;
    }
    
    /* Espaçamentos */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Stats */
    .hero-stats .stat-item,
    .stat-item-moderno,
    .stat-item-sobre {
        padding: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-stats .stat-number,
    .stat-number-moderno,
    .stat-number-sobre {
        font-size: 1.8rem !important;
    }
    
    .hero-stats .stat-label,
    .stat-label-moderno,
    .stat-label-sobre {
        font-size: 0.8rem !important;
    }
    
    /* Floating cards */
    .floating-card,
    .floating-card-sobre,
    .floating-card-tratamentos,
    .floating-card-contato {
        max-width: 250px !important;
        padding: 1.2rem;
    }
    
    .floating-card .card-content h4,
    .card-content-sobre h4,
    .card-content-tratamentos h4,
    .card-content-contato h4 {
        font-size: 0.9rem !important;
    }
    
    .floating-card .card-content p,
    .card-content-sobre p,
    .card-content-tratamentos p,
    .card-content-contato p {
        font-size: 0.8rem !important;
    }
    
    /* Info cards */
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
    
    /* Social buttons */
    .btn-social {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 0.8rem;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .timeline-description {
        font-size: 0.85rem;
    }
}



/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estilos específicos para páginas */
.hero-sobre, .hero-cursos, .hero-equipe, .hero-contato, .hero-tratamentos {
    background: linear-gradient(135deg, var(--preto-carvao) 0%, var(--cinza-chumbo) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

/* Garantir que o texto seja legível no hero-sobre */
.hero-sobre h1,
.hero-sobre .display-4,
.hero-sobre .text-white {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-sobre p,
.hero-sobre .lead,
.hero-sobre .text-light {
    color: #e0e0e0 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Garantir legibilidade em todas as seções da página sobre */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.bg-light .display-4,
.bg-light .display-5,
.bg-light .display-6 {
    color: var(--preto-carvao) !important;
}

.bg-light p,
.bg-light .lead {
    color: var(--cinza-chumbo) !important;
}

/* Estatísticas com melhor contraste */
.stat-item {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.stat-number {
    color: var(--rosa-queimado) !important;
}

.stat-label {
    color: var(--cinza-chumbo) !important;
}

/* Hero Cursos Moderno */
.hero-cursos-moderno {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-cursos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: -2;
}

.hero-cursos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 116, 116, 0.15) 0%, rgba(203, 175, 135, 0.15) 100%);
    z-index: -1;
}

.hero-cursos-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 116, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(203, 175, 135, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-cursos-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-cursos-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-cursos-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 400;
    color: #fff !important;
}

.hero-cursos-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-cursos-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cursos-facial {
    background: linear-gradient(135deg, var(--rosa-queimado), #d4a5a5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
}

.btn-cursos-facial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 116, 116, 0.4);
    color: white;
}

.btn-cursos-corporal {
    background: linear-gradient(135deg, var(--dourado-fosco), #e6d4b3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(203, 175, 135, 0.3);
}

.btn-cursos-corporal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 175, 135, 0.4);
    color: white;
}

/* Stats Card Moderno */
.hero-cursos-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
}

.stat-item-moderno {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.stat-item-moderno:hover {
    transform: translateX(5px);
    background: rgba(184, 116, 116, 0.05);
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number-moderno {
    font-size: 2rem;
    font-weight: 800;
    color: var(--preto-carvao);
    margin-bottom: 0.2rem;
}

.stat-label-moderno {
    font-size: 0.9rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* Hero Sobre Moderno */
.hero-sobre-moderno {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-sobre-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: -2;
}

.hero-sobre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 116, 116, 0.15) 0%, rgba(203, 175, 135, 0.15) 100%);
    z-index: -1;
}

.hero-sobre-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 116, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(203, 175, 135, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-sobre-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-sobre-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-sobre-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #e0e0e0 !important;
    line-height: 1.6;
    font-weight: 400;
}

.hero-sobre-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item-sobre {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item-sobre:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-item-sobre i {
    color: var(--dourado-fosco);
    font-size: 1.2rem;
}

.feature-item-sobre span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-sobre-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item-sobre {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-item-sobre:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.stat-icon-sobre {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-content-sobre {
    flex: 1;
}

.stat-number-sobre {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.stat-label-sobre {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Hero Sobre Visual */
.hero-sobre-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-sobre-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-sobre-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.hero-sobre-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.2), rgba(203, 175, 135, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

.floating-card-sobre {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-icon-sobre {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content-sobre h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto-carvao);
}

.card-content-sobre p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* Seções Modernas */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--preto-carvao);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--preto-carvao);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 500;
}

/* Cards Modernos */
.card-moderno {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-moderno:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-icon-moderno {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.card-moderno:hover .card-icon-moderno {
    transform: scale(1.1);
}

.card-title-moderno {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--preto-carvao);
    margin-bottom: 1rem;
    text-align: center;
}

.card-text-moderno {
    color: var(--cinza-chumbo);
    line-height: 1.6;
    text-align: center;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
}

/* Valores List */
.valores-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(184, 116, 116, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.valor-item:hover {
    background: rgba(184, 116, 116, 0.1);
    transform: translateX(5px);
}

.valor-item i {
    color: var(--rosa-queimado);
    font-size: 1rem;
}

.valor-item span {
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* História Section */
.historia-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.historia-content {
    padding-right: 2rem;
}

.historia-text {
    font-size: 1.1rem;
    color: var(--cinza-chumbo);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Timeline Moderno */
.timeline-moderno {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-moderno::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(184, 116, 116, 0.3);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rosa-queimado);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--preto-carvao);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--cinza-chumbo);
    font-size: 0.95rem;
}

/* Hero Tratamentos Moderno */
.hero-tratamentos-moderno {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-tratamentos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: -2;
}

.hero-tratamentos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 116, 116, 0.15) 0%, rgba(203, 175, 135, 0.15) 100%);
    z-index: -1;
}

.hero-tratamentos-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 116, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(203, 175, 135, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-tratamentos-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-tratamentos-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


.hero-tratamentos-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item-tratamentos {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item-tratamentos:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-item-tratamentos i {
    color: var(--dourado-fosco);
    font-size: 1.2rem;
}

.feature-item-tratamentos span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-tratamentos-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-tratamentos-facial {
    background: linear-gradient(135deg, var(--rosa-queimado), #d4a5a5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
}

.btn-tratamentos-facial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 116, 116, 0.4);
    color: white;
}

.btn-tratamentos-corporal {
    background: linear-gradient(135deg, var(--dourado-fosco), #e6d4b3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(203, 175, 135, 0.3);
}

.btn-tratamentos-corporal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 175, 135, 0.4);
    color: white;
}

/* Hero Tratamentos Visual */
.hero-tratamentos-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-tratamentos-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-tratamentos-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.hero-tratamentos-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.2), rgba(203, 175, 135, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

.floating-card-tratamentos {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-icon-tratamentos {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content-tratamentos h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto-carvao);
}

.card-content-tratamentos p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* Seção Tratamentos */
.tratamentos-faciais-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Cards de Tratamento Modernos */
.tratamento-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.tratamento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Cards Faciais */
.facial-card {
    border-left: 4px solid #B87474;
}

.facial-card .tratamento-overlay {
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.3), rgba(203, 175, 135, 0.3));
}

.facial-card .tratamento-icon {
    color: #B87474;
}

.facial-card .feature-tag {
    background: linear-gradient(135deg, #B87474, #CBAF87);
}

/* Cards Corporais */
.corporal-card {
    border-left: 4px solid #6c757d;
}

.corporal-card .tratamento-overlay {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.3), rgba(184, 116, 116, 0.3));
}

.corporal-card .tratamento-icon {
    color: #6c757d;
}

.corporal-card .feature-tag {
    background: linear-gradient(135deg, #6c757d, #B87474);
}

.tratamento-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tratamento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.tratamento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.tratamento-card:hover .tratamento-overlay {
    opacity: 1;
}

.tratamento-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tratamento-card:hover .tratamento-icon {
    transform: scale(1);
}

.tratamento-content {
    padding: 2rem;
}

.tratamento-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--preto-carvao);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tratamento-description {
    color: var(--cinza-chumbo);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tratamento-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsividade para os cards */
@media (max-width: 768px) {
    .tratamento-card {
        margin-bottom: 1.5rem;
    }
    
    .tratamento-image {
        height: 200px;
    }
    
    .tratamento-content {
        padding: 1.5rem;
    }
    
    .tratamento-title {
        font-size: 1.1rem;
    }
    
    .tratamento-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .tratamento-image {
        height: 180px;
    }
    
    .tratamento-content {
        padding: 1rem;
    }
    
    .tratamento-title {
        font-size: 1rem;
    }
    
    .tratamento-description {
        font-size: 0.85rem;
    }
    
    .tratamento-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Hero Contato Moderno */
.hero-contato-moderno {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-contato-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: -2;
}

.hero-contato-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 116, 116, 0.15) 0%, rgba(203, 175, 135, 0.15) 100%);
    z-index: -1;
}

.hero-contato-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 116, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(203, 175, 135, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-contato-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-contato-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}



.hero-contato-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item-contato {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item-contato:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-item-contato i {
    color: var(--dourado-fosco);
    font-size: 1.2rem;
}

.feature-item-contato span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-contato-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-contato-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-contato-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-contato-phone {
    background: linear-gradient(135deg, var(--dourado-fosco), #e6d4b3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(203, 175, 135, 0.3);
}

.btn-contato-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 175, 135, 0.4);
    color: white;
}

/* Hero Contato Visual */
.hero-contato-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-contato-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-contato-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.hero-contato-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.2), rgba(203, 175, 135, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

.floating-card-contato {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-icon-contato {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content-contato h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto-carvao);
}

.card-content-contato p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* Seção Formulário de Contato */
.contato-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
}

/* Formulário Moderno */
.formulario-moderno {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group-moderno {
    margin-bottom: 1.5rem;
}

.form-label-moderno {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--preto-carvao);
    margin-bottom: 0.5rem;
}

.form-label-moderno i {
    color: var(--rosa-queimado);
    font-size: 1rem;
}

.form-control-moderno,
.form-select-moderno {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control-moderno:focus,
.form-select-moderno:focus {
    outline: none;
    border-color: var(--rosa-queimado);
    box-shadow: 0 0 0 3px rgba(184, 116, 116, 0.1);
}

.form-check-moderno {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-check-input-moderno {
    width: 20px;
    height: 20px;
    accent-color: var(--rosa-queimado);
}

.form-check-label-moderno {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

.form-check-label-moderno i {
    color: var(--rosa-queimado);
    font-size: 0.9rem;
}

.form-submit-moderno {
    text-align: center;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
}

.btn-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 116, 116, 0.4);
    color: white;
}

/* Informações de Contato Modernas */
.contato-info-moderno {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rosa-queimado), var(--dourado-fosco));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--preto-carvao);
}

.info-content p {
    margin: 0;
    color: var(--preto-carvao);
    line-height: 1.5;
    font-weight: 500;
}

/* Redes Sociais Modernas */
.social-links-moderno {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.social-links-moderno h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--preto-carvao);
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-social:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-social.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.btn-social.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn-social.phone {
    background: linear-gradient(135deg, var(--dourado-fosco), #e6d4b3);
}

/* Garantir legibilidade em todas as seções */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6,
section .display-4,
section .display-5,
section .display-6 {
    color: var(--preto-carvao) !important;
}

section p,
section .lead {
    color: var(--preto-carvao) !important;
}

/* Seções com fundo claro */
.bg-light section h1,
.bg-light section h2,
.bg-light section h3,
.bg-light section h4,
.bg-light section h5,
.bg-light section h6,
.bg-light section .display-4,
.bg-light section .display-5,
.bg-light section .display-6 {
    color: var(--preto-carvao) !important;
}

.bg-light section p,
.bg-light section .lead {
    color: var(--preto-carvao) !important;
}

/* Cards com melhor contraste */
.card {
    background: #ffffff !important;
}

.card-title {
    color: var(--preto-carvao) !important;
}

.card-text {
    color: var(--cinza-chumbo) !important;
}

/* Galeria com texto legível */
.gallery-overlay h5 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.gallery-overlay p {
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-tratamentos {
    padding-top: 120px;
    min-height: 70vh;
}

/* Estilos específicos para o título da seção tratamentos */
.hero-tratamentos h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-tratamentos .lead {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Estilos específicos para imagens da equipe */
.equipe-img {
    object-fit: contain !important;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipe-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Container para imagens da equipe */
.equipe-img-container {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.equipe-img-container.large {
    min-height: 600px;
}

/* Responsividade para imagens da equipe */
@media (max-width: 768px) {
    .equipe-img-container {
        min-height: 350px;
        padding: 12px;
    }
    
    .equipe-img-container.large {
        min-height: 500px;
    }
    
    .equipe-img {
        max-height: 320px !important;
    }
    
    .equipe-img-container.large .equipe-img {
        max-height: 480px !important;
    }
}

@media (max-width: 480px) {
    .equipe-img-container {
        min-height: 300px;
        padding: 10px;
    }
    
    .equipe-img-container.large {
        min-height: 450px;
    }
    
    .equipe-img {
        max-height: 280px !important;
    }
    
    .equipe-img-container.large .equipe-img {
        max-height: 430px !important;
    }
}

/* Estilos específicos para a seção da equipe na página inicial */
.equipe-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.equipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.equipe-card .card-title {
    color: var(--dourado-fosco);
    font-size: 1.5rem;
    font-weight: 700;
}

.equipe-card .text-warning {
    color: var(--dourado-fosco) !important;
}

.equipe-card .btn-warning {
    background-color: var(--dourado-fosco);
    border-color: var(--dourado-fosco);
    color: white;
    transition: all 0.3s ease;
}

.equipe-card .btn-warning:hover {
    background-color: var(--rosa-queimado);
    border-color: var(--rosa-queimado);
    transform: translateY(-2px);
}

.equipe-card .btn-outline-warning {
    color: var(--dourado-fosco);
    border-color: var(--dourado-fosco);
    background-color: transparent;
}

.equipe-card .btn-outline-warning:hover {
    background-color: var(--dourado-fosco);
    border-color: var(--dourado-fosco);
    color: white;
}

.destaque-item {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.destaque-item:hover {
    transform: translateY(-5px);
}

.destaque-item i {
    color: var(--rosa-queimado);
}

.destaque-item h4 {
    color: var(--preto-carvao);
    font-weight: 600;
    margin: 1rem 0;
}

.destaque-item p {
    color: var(--cinza-chumbo);
}

/* Estilos para cards de cursos */
.curso-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.curso-icon::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 ease;
}

.curso-icon:hover::before {
    left: 100%;
}

.curso-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.curso-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 1;
    transition: all 0.3s ease;
}

.curso-icon:hover i {
    transform: scale(1.1);
}

/* Estilos para equipe */
.membro-foto {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--bege-rosado) 0%, var(--rosa-queimado) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.membro-foto i {
    font-size: 3rem;
    color: var(--preto-carvao);
}

/* Estilos para contato */
.contato-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bege-rosado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    color: var(--rosa-queimado);
    font-size: 1.25rem;
}

/* Estilos para estatísticas */
.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--branco);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--sombra);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rosa-queimado);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--cinza-chumbo);
    font-weight: 500;
}

/* Accordion customizado */
.accordion-button:not(.collapsed) {
    background-color: var(--bege-rosado);
    color: var(--preto-carvao);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(184, 116, 116, 0.25);
}

/* Formulário customizado */
.form-control:focus, .form-select:focus {
    border-color: var(--rosa-queimado);
    box-shadow: 0 0 0 0.25rem rgba(184, 116, 116, 0.25);
}

/* Navegação ativa */
.nav-link.active {
    color: var(--dourado-fosco) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Estilos para as novas seções da home */
.card {
    border: none;
    border-radius: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Estilos para depoimentos */
.card-body .text-warning {
    color: var(--dourado-fosco) !important;
}

/* Estilos para botões de link */
.btn-link {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--dourado-fosco) !important;
}

/* Estilos para ícones nas seções */
.text-center i.fa-3x {
    transition: transform 0.3s ease;
}

.text-center:hover i.fa-3x {
    transform: scale(1.1);
}

/* Estilos para accordion customizado */
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(184, 116, 116, 0.25);
    border-color: var(--rosa-queimado);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bege-rosado);
    color: var(--preto-carvao);
    border-color: var(--rosa-queimado);
}

/* Estilos para cards de destaque */
.destaque-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.destaque-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Estilos para seções alternadas */
.bg-light {
    background-color: var(--bege-rosado) !important;
}

/* Estilos para imagens placeholder */
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Estilos para estrelas de avaliação */
.text-warning {
    color: var(--dourado-fosco) !important;
}

/* Estilos para galeria de imagens */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Estilos para hero description */
.hero-description {
    font-size: 1.1rem;
    color: var(--cinza-claro-perolado);
    margin-bottom: 2rem;
    font-weight: 400;
} 

/* Estilos para botão outline-light melhorado */
.btn-outline-light {
    color: #1C1C1C;
    border-color: #B87474;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.btn-outline-light:hover {
    color: white;
    background-color: #B87474;
    border-color: #B87474;
    box-shadow: 0 4px 15px rgba(184, 116, 116, 0.3);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: var(--dourado-fosco);
    border-color: var(--dourado-fosco);
    background-color: transparent;
}

.btn-outline-secondary:hover {
    color: white;
    background-color: var(--dourado-fosco);
    border-color: var(--dourado-fosco);
}

/* Cards de Tratamentos */
.treatment-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Transições Suaves para Navegação */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State para Links */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::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 ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: var(--dourado-fosco) !important;
}

/* Preloader para Transições */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--preto-carvao) 0%, var(--cinza-chumbo) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.page-preloader.active {
    opacity: 1;
    visibility: visible;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--dourado-fosco);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Smooth Scroll para Links Internos */
html {
    scroll-behavior: smooth;
}

/* Melhor Feedback Visual para Botões */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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 ease, height 0.6s ease;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Transições para Cards */
.card {
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Transições para Seções */
section {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Melhor Feedback para Links de Navegação */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dourado-fosco);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

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

.treatment-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-overlay {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.treatment-title {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



/* Melhorias específicas para mobile */
@media (max-width: 768px) {
    .hero-tratamentos {
        padding-top: 80px;
        min-height: 60vh;
    }
    
    .hero-tratamentos .row {
        flex-direction: column-reverse;
    }
    
    .hero-tratamentos .col-lg-6:first-child {
        margin-top: 1rem;
    }
    
    .d-flex.flex-wrap.gap-4 {
        gap: 1rem !important;
    }
    
    .btn-lg.px-4.py-3 {
        padding: 12px 20px !important;
        font-size: 0.9rem;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .hero-tratamentos h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-tratamentos .lead {
        font-size: 1rem;
        line-height: 1.4;
    }
} 



@media (min-width: 768px) {
    .tratamentos-responsive {
            position: relative;
            top: 0;
            padding-top: 20px;
            min-height: 60vh;
            display: flex;
            align-items: center;
    }

    .title-response-desktop {
        font-size: 3.3rem !important;
    }

    .curso-responsive {
        position: relative;
        top: 100px;
        height: 310px;
    }
}

@media (min-width: 768px) {
     .equipe-responsive {
            position: relative;
            top: 100px;
            height: 524px !important;
    }
}

/* Estilos para cards de cursos modernos */
.curso-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.curso-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.curso-icon::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 ease;
}

.curso-icon:hover::before {
    left: 100%;
}

.curso-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Estilos específicos para diferentes categorias de cursos */
.curso-icon.facial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.curso-icon.facial:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.curso-icon.corporal {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.curso-icon.corporal:hover {
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.curso-icon.especial {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 4px 15px rgba(252, 182, 159, 0.3);
}

.curso-icon.especial:hover {
    box-shadow: 0 8px 25px rgba(252, 182, 159, 0.4);
}

.curso-icon.especial i {
    color: #d63384;
}

.curso-icon.residencia {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.3);
}

.curso-icon.residencia:hover {
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.4);
}

.curso-icon.residencia i {
    color: #0d6efd;
}

/* Animações de entrada para os ícones */
@keyframes iconFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.curso-icon {
    animation: iconFadeInUp 0.6s ease-out forwards;
}

.curso-icon:nth-child(1) { animation-delay: 0.1s; }
.curso-icon:nth-child(2) { animation-delay: 0.2s; }
.curso-icon:nth-child(3) { animation-delay: 0.3s; }
.curso-icon:nth-child(4) { animation-delay: 0.4s; }
.curso-icon:nth-child(5) { animation-delay: 0.5s; }
.curso-icon:nth-child(6) { animation-delay: 0.6s; }

/* Efeito de pulso para ícones especiais */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.curso-icon.especial {
    animation: iconFadeInUp 0.6s ease-out forwards, pulse 2s ease-in-out infinite;
}

.curso-icon.residencia {
    animation: iconFadeInUp 0.6s ease-out forwards, pulse 2s ease-in-out infinite 1s;
}

.curso-especial {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.curso-especial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero stats moderno */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cards menores e mais modernos */
.card {
    border: none;
    transition: all 0.3s ease;
}

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

/* Badges modernos */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

/* Botões menores */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* Efeito de Digitação */
.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--dourado-fosco);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.typewriter h1,
.typewriter h2,
.typewriter h3,
.typewriter .display-4,
.typewriter .display-5 {
    overflow: hidden;
    border-right: 2px solid var(--dourado-fosco);
    white-space: nowrap;
    margin: 0;
    animation: typing 3.5s 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(--dourado-fosco); }
}

/* Delay para diferentes títulos */
.typewriter-delay-1 {
    animation-delay: 0.5s;
}

.typewriter-delay-2 {
    animation-delay: 1s;
}

.typewriter-delay-3 {
    animation-delay: 1.5s;
}

/* Responsivo para títulos longos */
@media (max-width: 768px) {
    .typewriter h1,
    .typewriter h2,
    .typewriter h3,
    .typewriter .display-4,
    .typewriter .display-5 {
        white-space: normal;
        animation: typing-mobile 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    }

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

/* Estilos específicos para a página de equipe */
.hero-equipe {
    background: linear-gradient(135deg, #FFF0F5 0%, #FDF5E6 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.equipe-responsive {
    min-height: 80vh;
    align-items: center;
}

/* Título específico para equipe.html */
.hero-equipe .title-response-desktop {
    font-size: 3.5rem;
    line-height: 1.2;
    word-break: break-word;
    color: #2C1810 !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    font-weight: 700;
}

/* Manter título branco para outras páginas */
.hero-tratamentos .title-response-desktop,
.title-response-desktop {
    font-size: 3.5rem;
    line-height: 1.2;
    word-break: break-word;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    /* Título específico para equipe.html */
    .hero-equipe .title-response-desktop {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        color: #2C1810 !important;
        text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    }
    
    /* Manter título branco para outras páginas */
    .hero-tratamentos .title-response-desktop,
    .title-response-desktop {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .equipe-responsive {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-equipe {
        min-height: 80vh;
        padding: 3rem 0;
    }
    
    .btn-equipe, .btn-outline-equipe {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Melhorias nos cards da equipe */
.equipe-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.equipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.equipe-card .card-title {
    color: var(--preto-carvao);
    font-weight: 700;
}

.equipe-card .text-warning {
    color: var(--dourado-fosco) !important;
}

/* Estatísticas da equipe */
.stat-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.stat-number {
    color: var(--dourado-fosco);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    color: #ffffff;
    font-weight: 500;
}

/* Melhorias nos botões da equipe */
.btn-equipe {
    background: linear-gradient(135deg, #6B4423 0%, #8B4513 100%);
    border: none;
    color: white !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-equipe:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    color: white !important;
    background: linear-gradient(135deg, #8B4513 0%, #6B4423 100%);
}

.btn-outline-equipe {
    border: 3px solid #6B4423;
    color: #6B4423 !important;
    background: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-outline-equipe:hover {
    background: #6B4423;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.4);
    border-color: #6B4423;
}

/* Animações para os ícones */
.equipe-icon {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Melhorias na responsividade */
@media (max-width: 576px) {
    .hero-equipe {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .equipe-responsive {
        min-height: 60vh;
    }
    
    /* Título específico para equipe.html */
    .hero-equipe .title-response-desktop {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        color: #2C1810 !important;
        text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    }
    
    /* Manter título branco para outras páginas */
    .hero-tratamentos .title-response-desktop,
    .title-response-desktop {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .btn-equipe, .btn-outline-equipe {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animação dos contadores */
.counter-number {
    display: inline-block;
    font-weight: bold;
    color: var(--dourado-fosco);
    transition: all 0.3s ease;
}

.counter-number.animate {
    animation: counterPulse 0.5s ease-in-out;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Melhorias na seção de destaques */
.destaque-item {
    transition: all 0.3s ease;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.destaque-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.destaque-item i {
    color: var(--dourado-fosco) !important;
    transition: all 0.3s ease;
}

.destaque-item:hover i {
    transform: scale(1.1);
    color: var(--rosa-queimado) !important;
}

.destaque-item h4 {
    color: var(--dourado-fosco);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.destaque-item p {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

/* Efeito de entrada para os destaques */
.destaque-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.destaque-item:nth-child(1) { animation-delay: 0.1s; }
.destaque-item:nth-child(2) { animation-delay: 0.2s; }
.destaque-item:nth-child(3) { animation-delay: 0.3s; }
.destaque-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Melhorias específicas para botões no hero da equipe */
.hero-equipe .btn-equipe {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff !important;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid #8B4513;
}

.hero-equipe .btn-equipe:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.hero-equipe .btn-outline-equipe {
    border: 3px solid #8B4513;
    color: #8B4513 !important;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.hero-equipe .btn-outline-equipe:hover {
    background: #8B4513;
    color: #fff !important;
    text-shadow: none;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.5);
}

/* Estilos para botões dos cursos */
.btn-curso {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: none;
    color: white !important;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-curso:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    color: white !important;
    text-decoration: none;
}

.btn-outline-curso {
    border: 2px solid #8B4513;
    color: #8B4513 !important;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-curso:hover {
    background: #8B4513;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    border-color: #8B4513;
    text-decoration: none;
}

/* Melhorias na legibilidade do texto no hero da equipe - APENAS para equipe.html */
.hero-equipe h1,
.hero-equipe .display-4 {
    color: #2C1810 !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.hero-equipe p,
.hero-equipe .lead {
    color: #4A2C1A !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
    font-weight: 500;
}

.hero-equipe .text-light {
    color: #4A2C1A !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
}

/* Manter texto branco para outras páginas */
.hero-tratamentos h1,
.hero-tratamentos .display-4,
.hero-tratamentos p,
.hero-tratamentos .lead,
.hero-tratamentos .text-light {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}


/* ===================== RESPONSIVIDADE MOBILE (ATÉ 480px) ===================== */
@media (max-width: 480px) {
    /* Container e espaçamentos */
    .container, .nav-container {
        padding: 0 10px !important;
    }
    /* Header e navegação */
    .nav-logo h2 {
        font-size: 0.85rem !important;
        line-height: 1.1;
    }
    .logo-img {
        height: 20px !important;
        width: auto !important;
    }
    /* Hero Sections */
    .hero-title,
    .hero-cursos-title,
    .hero-sobre-title,
    .hero-tratamentos-title,
    .hero-contato-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .hero-subtitle,
    .hero-cursos-subtitle,
    .hero-sobre-subtitle,
    .hero-tratamentos-subtitle,
    .hero-contato-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    .feature-item,
    .feature-item-sobre,
    .feature-item-tratamentos,
    .feature-item-contato {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
        min-width: auto !important;
        width: auto !important;
    }
    .hero-buttons,
    .hero-cursos-buttons,
    .hero-tratamentos-buttons,
    .hero-contato-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    .btn-hero,
    .btn-cursos-facial,
    .btn-cursos-corporal,
    .btn-tratamentos-facial,
    .btn-tratamentos-corporal,
    .btn-contato-whatsapp,
    .btn-contato-phone,
    .btn-form-submit {
        width: 100% !important;
        max-width: 250px !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    .hero-main-image,
    .hero-cursos-main-image,
    .hero-sobre-main-image,
    .hero-tratamentos-main-image,
    .hero-contato-main-image {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .floating-card,
    .floating-card-sobre,
    .floating-card-tratamentos,
    .floating-card-contato {
        max-width: 220px !important;
        padding: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .floating-card .card-content h4,
    .card-content-sobre h4,
    .card-content-tratamentos h4,
    .card-content-contato h4 {
        font-size: 0.9rem !important;
    }
    .floating-card .card-content p,
    .card-content-sobre p,
    .card-content-tratamentos p,
    .card-content-contato p {
        font-size: 0.8rem !important;
    }
    /* Cards e elementos */
    .curso-card,
    .membro-card,
    .tratamento-card,
    .card-moderno {
        margin-bottom: 1.2rem !important;
        padding: 1rem !important;
    }
    .card-title-moderno {
        font-size: 1.1rem !important;
    }
    .tratamento-image,
    .card-img-top {
        height: 140px !important;
        object-fit: cover !important;
    }
    .tratamento-title {
        font-size: 1.1rem !important;
    }
    .tratamento-description {
        font-size: 0.9rem !important;
    }
    .feature-tag {
        font-size: 0.75rem !important;
        padding: 0.2rem 0.6rem !important;
    }
    /* Formulários */
    .formulario-moderno {
        padding: 1rem !important;
        margin: 0 5px !important;
    }
    .form-control-moderno,
    .form-select-moderno {
        padding: 0.8rem 1rem !important;
        font-size: 0.95rem !important;
    }
    .form-label-moderno {
        font-size: 0.9rem !important;
    }
    /* Estatísticas */
    .hero-stats .stat-item,
    .stat-item-moderno,
    .stat-item-sobre {
        padding: 0.8rem !important;
        width: 100% !important;
        max-width: 200px !important;
    }
    .hero-stats .stat-number,
    .stat-number-moderno,
    .stat-number-sobre {
        font-size: 1.3rem !important;
    }
    .hero-stats .stat-label,
    .stat-label-moderno,
    .stat-label-sobre {
        font-size: 0.8rem !important;
    }
    /* Tipografia */
    .display-4 {
        font-size: 1.5rem !important;
    }
    .display-5 {
        font-size: 1.2rem !important;
    }
    .lead {
        font-size: 0.95rem !important;
    }
    .section-title {
        font-size: 1.3rem !important;
    }
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    .section-header h2 {
        font-size: 1.2rem !important;
    }
    /* Espaçamentos */
    .py-5 {
        padding-top: 1.2rem !important;
        padding-bottom: 1.2rem !important;
    }
    .mb-5 {
        margin-bottom: 1.2rem !important;
    }
    /* Timeline */
    .timeline-item {
        padding-left: 30px !important;
        margin-bottom: 1rem !important;
    }
    .timeline-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
    .timeline-content {
        padding: 0.6rem !important;
    }
    .timeline-title {
        font-size: 0.9rem !important;
    }
    .timeline-description {
        font-size: 0.8rem !important;
    }
    /* Social buttons */
    .btn-social {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.95rem !important;
    }
    /* Info cards */
    .info-card {
        padding: 0.8rem !important;
    }
    .info-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
    .info-content h4 {
        font-size: 0.9rem !important;
    }
    .info-content p {
        font-size: 0.8rem !important;
    }
}




/* ===================== MELHORIAS ESPECÍFICAS PARA index.html ===================== */

/* Melhorias para seção de destaques */
@media (max-width: 480px) {
    .destaques .row {
        margin: 0 !important;
    }
    .destaques .col-md-3 {
        padding: 0 5px !important;
        margin-bottom: 1rem !important;
    }
    .destaque-item {
        padding: 1rem 0.5rem !important;
        margin: 0 !important;
    }
    .destaque-item i {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    .destaque-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem !important;
    }
    .destaque-item p {
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
}

/* Melhorias para CTA Section */
@media (max-width: 480px) {
    .bg-primary h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    .bg-primary .lead {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    .bg-primary .btn {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0.3rem auto !important;
        display: block !important;
    }
}

/* Melhorias para Equipe Section */
@media (max-width: 480px) {
    .equipe-card .row {
        flex-direction: column !important;
    }
    .equipe-card .col-md-5 {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    .equipe-card .col-md-7 {
        width: 100% !important;
    }
    .equipe-img-container {
        min-height: 200px !important;
        text-align: center !important;
    }
    .equipe-img {
        max-height: 180px !important;
        width: auto !important;
    }
    .equipe-card .card-body {
        padding: 1rem !important;
        text-align: center !important;
    }
    .equipe-card .card-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    .equipe-card .text-warning {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
    }
    .equipe-card .card-text {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        color: var(--preto-carvao) !important;
        font-weight: 500 !important;
    }
    .equipe-card .row .col-6 {
        margin-bottom: 0.5rem !important;
    }
    .equipe-card .btn-warning {
        width: 100% !important;
        max-width: 200px !important;
    }
}

/* Melhorias para "Por que Escolher" Section */
@media (max-width: 480px) {
    .bg-light .col-lg-3 {
        margin-bottom: 1.5rem !important;
    }
    .bg-light .text-center {
        padding: 1rem 0.5rem !important;
    }
    .bg-light .text-center i {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    .bg-light .text-center h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .bg-light .text-center p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
}

/* Melhorias para Cursos em Destaque */
@media (max-width: 480px) {
    .card .card-body {
        padding: 1rem !important;
    }
    .card .card-body i {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    .card .card-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .card .card-text {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
    .card .btn {
        width: 100% !important;
        max-width: 150px !important;
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
    }
}

/* Melhorias para Tratamentos em Destaque */
@media (max-width: 480px) {
    .treatment-card {
        margin-bottom: 1rem !important;
    }
    .treatment-image {
        height: 120px !important;
    }
    .treatment-overlay {
        padding: 0.5rem !important;
    }
    .treatment-title {
        font-size: 0.9rem !important;
        margin: 0 !important;
    }
}

/* Melhorias para Depoimentos */
@media (max-width: 480px) {
    .card .card-body .mb-3 {
        margin-bottom: 0.8rem !important;
    }
    .card .card-body .fas.fa-star {
        font-size: 0.9rem !important;
    }
    .card .card-body .card-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }
    .card .card-body h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
    }
    .card .card-body small {
        font-size: 0.75rem !important;
    }
}

/* Melhorias para Blog/Notícias */
@media (max-width: 480px) {
    .card-img-top {
        height: 120px !important;
        object-fit: cover !important;
    }
}

/* Melhorias para Galeria */
@media (max-width: 480px) {
    .gallery-item {
        margin-bottom: 1rem !important;
    }
    .gallery-item img {
        width: 100% !important;
        height: 150px !important;
        object-fit: cover !important;
    }
}

/* Melhorias para FAQ */
@media (max-width: 480px) {
    .accordion-button {
        font-size: 0.9rem !important;
        padding: 0.8rem 1rem !important;
    }
    .accordion-body {
        font-size: 0.85rem !important;
        padding: 1rem !important;
    }
}

/* Melhorias para Footer */
@media (max-width: 480px) {
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    .footer-section {
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }
    .social-links a {
        font-size: 1.5rem;
        margin: 0 0.5rem;
        padding: 0.5rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}


/* ===================== MELHORIAS ESPECÍFICAS PARA HERO SECTION index.html ===================== */

/* Melhorias para mobile (até 480px) - Hero Section */
@media (max-width: 480px) {
    /* Hero Container */
    .hero {
        min-height: auto !important;
        padding-top: 60px !important;
        padding-bottom: 2rem !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
        text-align: center !important;
    }
    
    /* Hero Badge */
    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
        margin-bottom: 1rem !important;
        display: inline-block !important;
        width: auto !important;
        max-width: 90% !important;
    }
    
    /* Hero Title */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        padding: 0 5px !important;
    }
    
    /* Hero Subtitle */
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 5px !important;
    }
    
    /* Hero Stats */
    .hero-stats {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 5px !important;
    }
    
    .hero-stats .stat-item {
        padding: 0.8rem !important;
        min-width: auto !important;
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: center !important;
        padding: 0 5px !important;
    }
    
    .btn-hero {
        width: 100% !important;
        max-width: 250px !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        margin: 0 auto !important;
    }
    
    /* Hero Visual */
    .hero-visual {
        order: -1 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-main-image {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 15px !important;
    }
    
    /* Floating Card */
    .floating-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 1rem !important;
        min-width: auto !important;
        width: 100% !important;
        max-width: 220px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 1rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
    }
    
    .card-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }
    
    .floating-card .card-content h4 {
        font-size: 0.85rem !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    .floating-card .card-content p {
        font-size: 0.75rem !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
}

/* Melhorias para tablet (768px) - Hero Section */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-stats .stat-item {
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .btn-hero {
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .hero-main-image {
        height: 250px !important;
    }
    
    .floating-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 1.5rem !important;
        max-width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Melhorias para telas muito pequenas (até 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .hero-stats .stat-item {
        padding: 0.6rem !important;
    }
    
    .hero-stats .stat-number {
        font-size: 1.3rem !important;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem !important;
    }
    
    .btn-hero {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    
    .hero-main-image {
        height: 180px !important;
    }
    
    .floating-card {
        padding: 0.8rem !important;
        max-width: 200px !important;
    }
    
    .card-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .floating-card .card-content h4 {
        font-size: 0.8rem !important;
    }
    
    .floating-card .card-content p {
        font-size: 0.7rem !important;
    }
}


/* ===================== CENTRALIZAÇÃO DOS ITENS HERO ===================== */

/* Centralização geral para mobile */
@media (max-width: 480px) {
    /* Hero Container - Centralização */
    .hero-container {
        text-align: center !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    /* Hero Content - Centralização */
    .hero-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Hero Badge - Centralização */
    .hero-badge {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: inline-block !important;
        width: auto !important;
        max-width: 90% !important;
    }
    
    /* Hero Title - Centralização */
    .hero-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Hero Subtitle - Centralização */
    .hero-subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Hero Stats - Centralização */
    .hero-stats {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .hero-stats .stat-item {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Hero Buttons - Centralização */
    .hero-buttons {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .btn-hero {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Hero Visual - Centralização */
    .hero-visual {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .hero-image-container {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Floating Card - Centralização */
    .floating-card {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .floating-card .card-content {
        text-align: center !important;
    }
}

/* Centralização para tablet */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-container {
        text-align: center !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        align-items: center !important;
    }
    
    .hero-badge {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-stats {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-stats .stat-item {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .btn-hero {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-visual {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .floating-card {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Centralização para telas muito pequenas */
@media (max-width: 360px) {
    .hero-container {
        text-align: center !important;
        padding: 0 5px !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 5px !important;
    }
    
    .hero-badge {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 0.75rem !important;
        padding: 0.3rem 0.8rem !important;
    }
    
    .hero-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 5px !important;
    }
    
    .hero-subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 5px !important;
    }
    
    .hero-stats {
        justify-content: center !important;
        align-items: center !important;
        padding: 0 5px !important;
    }
    
    .hero-stats .stat-item {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
        align-items: center !important;
        padding: 0 5px !important;
    }
    
    .btn-hero {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-visual {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 5px !important;
    }
    
    .floating-card {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== MELHORIAS RESPONSIVAS - MOBILE FIRST ===== */

/* Reset para melhor performance mobile */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Garantir centralização global */
body {
    text-align: center;
}

/* Fallback para ícones caso Font Awesome não carregue */
.fas, .fab, .far, .fa {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 6 Regular', sans-serif !important;
}

/* Fallback específico para ícones comuns */
.fa-graduation-cap::before,
.fas.fa-graduation-cap::before {
    content: "🎓" !important;
    font-family: inherit !important;
}

.fa-info-circle::before,
.fas.fa-info-circle::before {
    content: "ℹ️" !important;
    font-family: inherit !important;
}

.fa-users::before,
.fas.fa-users::before {
    content: "👥" !important;
    font-family: inherit !important;
}

.fa-chalkboard-teacher::before,
.fas.fa-chalkboard-teacher::before {
    content: "👨‍🏫" !important;
    font-family: inherit !important;
}

.fa-trophy::before,
.fas.fa-trophy::before {
    content: "🏆" !important;
    font-family: inherit !important;
}

.fa-star::before,
.fas.fa-star::before {
    content: "⭐" !important;
    font-family: inherit !important;
}

.fa-phone::before,
.fas.fa-phone::before {
    content: "📞" !important;
    font-family: inherit !important;
}

.fa-user-md::before,
.fas.fa-user-md::before {
    content: "👩‍⚕️" !important;
    font-family: inherit !important;
}

.fa-facebook::before,
.fab.fa-facebook::before {
    content: "📘" !important;
    font-family: inherit !important;
}

.fa-instagram::before,
.fab.fa-instagram::before {
    content: "📷" !important;
    font-family: inherit !important;
}

.fa-linkedin::before,
.fab.fa-linkedin::before {
    content: "💼" !important;
    font-family: inherit !important;
}

.fa-youtube::before,
.fab.fa-youtube::before {
    content: "📺" !important;
    font-family: inherit !important;
}

.fa-chevron-up::before,
.fas.fa-chevron-up::before {
    content: "⬆️" !important;
    font-family: inherit !important;
}

/* Estilos para fallback do Font Awesome */
.fontawesome-fallback .fas,
.fontawesome-fallback .fab,
.fontawesome-fallback .far,
.fontawesome-fallback .fa {
    font-family: inherit !important;
    font-size: 1.2em !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* Melhorar aparência dos emojis como fallback */
.fontawesome-fallback .fas::before,
.fontawesome-fallback .fab::before,
.fontawesome-fallback .far::before,
.fontawesome-fallback .fa::before {
    font-size: 1.1em !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 0.3em !important;
}

.container {
    text-align: center;
}

/* Centralizar todos os elementos da seção hero */
.hero * {
    text-align: center;
}

.hero-container {
    text-align: center;
}

.hero-content {
    text-align: center;
}

.hero-stats {
    text-align: center;
}

.hero-buttons {
    text-align: center;
}

/* Permitir seleção em inputs e textareas */
input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Melhorias para dispositivos móveis pequenos (320px - 480px) */
@media (max-width: 480px) {
    /* Container e espaçamentos */
    .container, .nav-container {
        padding: 0 12px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    
    .hero-tratamentos-buttons {
        margin: 20px !important;
    }
    
    
    /* Header mobile otimizado */
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
        line-height: 1.1;
        margin-left: 8px;
    }
    
    .logo-img {
        height: 35px;
        width: auto;
    }
    
    /* Hero section mobile otimizado */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 2rem;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 12px;
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: 20px;
        text-align: center;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 1rem !important;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        font-weight: 700;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        color: var(--cinza-chumbo);
        text-align: center;
        width: 100%;
    }
    
    /* Stats mobile otimizado */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-stats .stat-item {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-stats .stat-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* Garantir que elementos não se movam horizontalmente */
    .hero-stats .stat-item {
        transform: translateX(0) !important;
    }
    
    .hero-buttons .btn-hero {
        transform: translateX(0) !important;
    }
    
    .hero-badge {
        transform: translateX(0) !important;
    }
    
    .hero-title {
        transform: translateX(0) !important;
    }
    
    .hero-subtitle {
        transform: translateX(0) !important;
    }
    
    .hero-stats .stat-number {
        font-size: 2.2rem !important;
        font-weight: 700;
        color: var(--rosa-queimado);
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.85rem !important;
        color: var(--cinza-chumbo);
        font-weight: 500;
    }
    
    /* Botões mobile otimizados */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-hero:active {
        transform: scale(0.98) translateX(0) !important;
    }
    
    /* Reset de margins e paddings que podem causar desalinhamento */
    .hero * {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-stats .stat-item {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-buttons .btn-hero {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Imagem hero mobile */
    .hero-visual {
        order: -1;
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-container {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-main-image {
        width: 100%;
        height: 250px !important;
        object-fit: cover;
        border-radius: 16px;
    }
    
    /* Card flutuante mobile */
    .floating-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 1rem;
        width: 100% !important;
        max-width: 280px !important;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .floating-card .card-content h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
        color: var(--preto-carvao);
    }
    
    .floating-card .card-content p {
        font-size: 0.85rem !important;
        color: var(--cinza-chumbo);
        margin: 0;
    }
    
    /* Seções gerais mobile */
    section {
        padding: 2rem 0;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Cards mobile otimizados */
    .card {
        border-radius: 12px;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }
    
    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }
    
    .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--cinza-chumbo);
    }
    
    /* Destaques mobile */
    .destaque-item {
        text-align: center;
        padding: 1.5rem 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }
    
    .destaque-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .destaque-item i {
        font-size: 2.5rem;
        color: var(--rosa-queimado);
        margin-bottom: 1rem;
        display: block;
    }
    
    .destaque-item h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--preto-carvao);
        margin-bottom: 0.5rem;
    }
    
    .destaque-item p {
        font-size: 0.9rem;
        color: var(--cinza-chumbo);
        margin: 0;
    }
    
    /* Equipe mobile */
    .equipe-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }
    
    .equipe-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .equipe-card .row {
        flex-direction: column;
    }
    
    .equipe-card .col-md-5 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .equipe-card .col-md-7 {
        width: 100%;
    }
    
    .equipe-img-container {
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        margin: 0;
    }
    
    .equipe-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .equipe-card .card-body {
        padding: 1.5rem;
    }
    
    .equipe-card .card-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .equipe-card .text-warning {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .equipe-card .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .equipe-card .row .col-6 {
        width: 50%;
        margin-bottom: 0.5rem;
    }
    
    .equipe-card .btn-warning {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Tratamentos mobile */
    .treatment-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        margin-bottom: 1rem;
        height: 200px;
    }
    
    .treatment-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .treatment-image {
        height: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .treatment-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 1.5rem 1rem 1rem;
        color: white;
    }
    
    .treatment-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }
    
    /* CTA mobile */
    .bg-primary {
        padding: 2rem 1rem;
    }
    
    .bg-primary h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .bg-primary .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bg-primary .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Depoimentos mobile */
    .card .card-body .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    .card .card-body .fas.fa-star {
        font-size: 1rem;
        margin: 0 0.1rem;
    }
    
    .card .card-body .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        font-style: italic;
    }
    
    .card .card-body h6 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }
    
    .card .card-body small {
        font-size: 0.8rem;
        color: var(--cinza-chumbo);
    }
    
    /* Blog mobile */
    .card-img-top {
        height: 180px;
        object-fit: cover;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    
    /* Galeria mobile */
    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }
    
    .gallery-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }
    
    /* FAQ mobile */
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .accordion-body {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 1rem;
    }
    
    /* Footer mobile */
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--dourado-fosco);
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .social-links a {
        font-size: 1.5rem;
        margin: 0 0.5rem;
        padding: 0.5rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Melhorias para tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container, .nav-container {
        padding: 0 20px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        justify-items: center;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: auto;
        min-width: 200px;
    }
    
    .destaques .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .equipe-card .row {
        flex-direction: row;
    }
    
    .equipe-card .col-md-5 {
        width: 40%;
    }
    
    .equipe-card .col-md-7 {
        width: 60%;
    }
}

/* Melhorias para tablets grandes (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .destaques .row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Melhorias para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-container {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-visual {
        order: 0;
        flex: 1;
    }
    
    .hero-content {
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem !important;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem !important;
    }
}

/* Melhorias para dispositivos com tela de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-main-image,
    .card-img-top,
    .gallery-item img,
    .equipe-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Melhorias para dispositivos com notch */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
    
    .hero {
        padding-top: max(80px, calc(80px + env(safe-area-inset-top)));
    }
    
    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Melhorias para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Melhorias para modo escuro (se implementado no futuro) */
@media (prefers-color-scheme: dark) {
    /* Estilos para modo escuro podem ser adicionados aqui */
}

/* Melhorias para impressão */
@media print {
    .header,
    .footer,
    .btn,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


@media (min-width: 768px) {
    .responsive-desktop {
        padding-top: 120px !important;
    }

    .desktop-produtos {
        height: 600px;
        position: relative;
        top: 47px;
    }
}


.hero-tratamentos-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e0e0e0 !important;
    line-height: 1.6;
    font-weight: 400;
}


.responsive-desktop-contato {
    padding-top:155px !important;
}

.hero-contato-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e0e0e0 !important;
    line-height: 1.6;
    font-weight: 400;
}


.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e0e0e0 !important;
    line-height: 1.6;
    font-weight: 400;
}

.bg-light h5 .treatment-title {
    color: #fff !important;
}

/* Banner Rotativo */
.banner-rotativo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.banner-rotativo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.banner-slide {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 400px;
}

.banner-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.05), rgba(203, 175, 135, 0.05));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.banner-slide:hover::before {
    opacity: 0;
}

.banner-content {
    display: flex;
    align-items: center;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    padding: 3rem;
    text-align: left;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--preto-carvao);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #B87474, #CBAF87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.1rem;
    color: var(--cinza-chumbo);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--preto-carvao);
    font-weight: 500;
}

.banner-feature i {
    color: #B87474;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.banner-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #B87474;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.banner-slide:hover .banner-cta {
    transform: translateX(10px);
}

.banner-cta i {
    transition: transform 0.3s ease;
}

.banner-slide:hover .banner-cta i {
    transform: translateX(5px);
}

.banner-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

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

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(184, 116, 116, 0.9);
    border-radius: 50%;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(184, 116, 116, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #B87474;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .banner-text {
        padding: 2rem;
        text-align: center;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-features {
        align-items: center;
    }
    
    .banner-image {
        height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
    }
    
    .banner-feature {
        font-size: 0.9rem;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* Modal de Escolha - Cursos ou Tratamentos */
.escolha-modal {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

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

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B87474, #CBAF87, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.modal-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-chumbo);
    margin-bottom: 0;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.escolha-option {
    position: relative;
    min-height: 450px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.escolha-option:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.escolha-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.1), rgba(203, 175, 135, 0.1));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.escolha-option:hover::before {
    opacity: 0;
}

.escolha-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.escolha-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.escolha-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursos-option .escolha-icon {
    background: linear-gradient(135deg, #B87474, #CBAF87);
    color: white;
    box-shadow: 0 10px 25px rgba(184, 116, 116, 0.3);
}

.tratamentos-option .escolha-icon {
    background: linear-gradient(135deg, #6c757d, #B87474);
    color: white;
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
}

.escolha-option:hover .escolha-icon {
    transform: scale(1.15) rotate(8deg);
}

.escolha-option:hover .escolha-icon::after {
    opacity: 1;
}

.escolha-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--preto-carvao);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.escolha-description {
    font-size: 1.1rem;
    color: var(--cinza-chumbo);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.escolha-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-badge {
    background: rgba(184, 116, 116, 0.1);
    color: #B87474;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(184, 116, 116, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 116, 116, 0.1);
}

.escolha-option:hover .feature-badge {
    background: rgba(184, 116, 116, 0.2);
    transform: translateY(-2px);
}

.escolha-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #B87474;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 30px;
    background: rgba(184, 116, 116, 0.1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(184, 116, 116, 0.15);
}

.escolha-option:hover .escolha-cta {
    background: rgba(184, 116, 116, 0.15);
    border-color: rgba(184, 116, 116, 0.3);
    transform: translateX(10px);
}

.escolha-cta i {
    transition: transform 0.3s ease;
}

.escolha-option:hover .escolha-cta i {
    transform: translateX(5px);
}

.escolha-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.escolha-option:hover .escolha-overlay {
    opacity: 1;
}

/* Efeitos específicos para cada opção */
.cursos-option {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-right: 1px solid rgba(0,0,0,0.05);
}

.tratamentos-option {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 1px solid rgba(0,0,0,0.05);
}

/* Responsividade Mobile - Modal de Escolha */
@media (max-width: 768px) {
    .escolha-modal {
        margin: 0.5rem;
        border-radius: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .modal-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    /* Layout em coluna única para mobile */
    .modal-body .row {
        flex-direction: column;
    }
    
    .modal-body .col-md-6 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .escolha-option {
        min-height: 280px;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .escolha-content {
        padding: 1.5rem 1rem;
        justify-content: flex-start;
    }
    
    .escolha-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .escolha-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .escolha-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .escolha-features {
        gap: 0.4rem;
        margin-bottom: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        border-radius: 15px;
    }
    
    .escolha-cta {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        width: auto;
        justify-content: center;
    }
    
    .escolha-cta i {
        font-size: 0.8rem;
    }
    
    /* Remover bordas entre colunas no mobile */
    .cursos-option {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .tratamentos-option {
        border-left: none;
        border-bottom: none;
    }
    
    /* Footer do modal */
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-footer .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .escolha-modal {
        margin: 0.25rem;
        border-radius: 12px;
    }
    
    .modal-dialog {
        margin: 0.25rem;
        max-width: calc(100% - 0.5rem);
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-logo {
        width: 50px;
        height: 50px;
    }
    
    .escolha-option {
        min-height: 250px;
    }
    
    .escolha-content {
        padding: 1.2rem 0.8rem;
    }
    
    .escolha-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .escolha-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .escolha-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .escolha-features {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .escolha-cta {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .escolha-modal {
        margin: 0.2rem;
        border-radius: 10px;
    }
    
    .modal-dialog {
        margin: 0.2rem;
        max-width: calc(100% - 0.4rem);
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
    }
    
    .modal-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .escolha-option {
        min-height: 220px;
    }
    
    .escolha-content {
        padding: 1rem 0.6rem;
    }
    
    .escolha-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .escolha-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .escolha-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .escolha-features {
        gap: 0.25rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .escolha-cta {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .modal-footer {
        padding: 0.8rem;
    }
    
    .modal-footer .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Orientação landscape no mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .escolha-modal {
        max-height: 85vh;
    }
    
    .escolha-option {
        min-height: 200px;
    }
    
    .escolha-content {
        padding: 1rem 0.8rem;
    }
    
    .escolha-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .escolha-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .escolha-description {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .escolha-features {
        margin-bottom: 0.6rem;
    }
    
    .feature-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .escolha-cta {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Animação de entrada do modal */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Efeito de loading nos ícones */
.escolha-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(184, 116, 116, 0.3);
    }
    50% {
        box-shadow: 0 10px 25px rgba(184, 116, 116, 0.5);
    }
    100% {
        box-shadow: 0 10px 25px rgba(184, 116, 116, 0.3);
    }
}

/* Melhorar acessibilidade */
.escolha-option:focus {
    outline: 3px solid #B87474;
    outline-offset: 2px;
}

/* Efeito de ripple no clique */
.escolha-option {
    position: relative;
    overflow: hidden;
}

.escolha-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(184, 116, 116, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 3;
}

.escolha-option:active::after {
    width: 300px;
    height: 300px;
}

/* ===== ESTILOS DA PÁGINA RESIDÊNCIA ===== */

/* Hero Residência */
.hero-residencia-moderno {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    overflow: hidden;
    min-height: 100vh;
}

.hero-residencia-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/residencia-bg.jpg') center/cover;
    z-index: 1;
}

.hero-residencia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 2;
}

.hero-residencia-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 3;
}

.hero-residencia-content {
    position: relative;
    z-index: 4;
}

.hero-residencia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-residencia-badge i {
    font-size: 1.2rem;
    color: #ffc107;
}

.hero-residencia-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-residencia-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-residencia-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item-residencia {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item-residencia i {
    color: #ffc107;
    font-size: 1rem;
}

.hero-residencia-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-residencia-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border: none;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-residencia-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    color: #000;
}

.btn-residencia-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-residencia-outline:hover {
    background: #ffffff;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-residencia-visual {
    position: relative;
    z-index: 4;
}

.hero-residencia-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-residencia-main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.hero-residencia-image-container:hover .hero-residencia-main-image {
    transform: scale(1.05);
}

.hero-residencia-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

.floating-card-residencia {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    animation: float 3s ease-in-out infinite;
}

.card-icon-residencia {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
}

.card-content-residencia h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #333;
}

.card-content-residencia p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--preto-carvao);
    font-weight: 500;
}

/* Seções da Residência */
.sobre-residencia-section {
    background: #ffffff;
}

.info-card-residencia {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.info-card-residencia:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-icon-residencia {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 2rem;
}

.info-card-residencia h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--preto-carvao);
}

.info-card-residencia p {
    color: var(--preto-carvao);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Procedimentos */
.procedimento-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 1rem;
}

.procedimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.procedimento-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
    font-size: 1.8rem;
}

.procedimento-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--preto-carvao);
}

.procedimento-card p {
    color: var(--preto-carvao);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.destaque-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.destaque-box i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.destaque-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destaque-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Benefícios */
.beneficio-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.8rem;
}

.beneficio-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--preto-carvao);
}

.beneficio-card p {
    color: var(--preto-carvao);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Estratégias */
.estrategia-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.estrategia-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.estrategia-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.8rem;
}

.estrategia-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.estrategia-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.objetivo-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.objetivo-box i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.objetivo-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.objetivo-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Preços */
.preco-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
}

.preco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.preco-card.destaque {
    border-color: #ffc107;
    transform: scale(1.05);
}

.preco-card.destaque:hover {
    transform: scale(1.05) translateY(-10px);
}

.preco-header {
    margin-bottom: 2rem;
}

.preco-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--preto-carvao);
    margin-bottom: 0.5rem;
}

.preco-header .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.preco-valor {
    margin-bottom: 1.5rem;
}

.preco-valor .moeda {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--preto-carvao);
    vertical-align: top;
}

.preco-valor .valor {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--preto-carvao);
    line-height: 1;
}

.preco-descricao p {
    color: var(--preto-carvao);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Vantagens */
.vantagem-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vantagem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.8rem;
}

.vantagem-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--preto-carvao);
}

.vantagem-card p {
    color: var(--preto-carvao);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-residencia-title {
        font-size: 2.5rem;
    }
    
    .hero-residencia-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-residencia-features {
        flex-direction: column;
    }
    
    .hero-residencia-buttons {
        flex-direction: column;
    }
    
    .floating-card-residencia {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .preco-card.destaque {
        transform: none;
    }
    
    .preco-card.destaque:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-residencia-title {
        font-size: 2rem;
    }
    
    .hero-residencia-subtitle {
        font-size: 1rem;
    }
    
    .preco-valor .valor {
        font-size: 2.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}

/* ===== ESTILOS PARA IMAGENS DOS PROCEDIMENTOS E GALERIA ===== */

/* Imagens dos Cards de Procedimentos */
.procedimento-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.procedimento-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Galeria de Tratamentos Corporais */
.galeria-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.galeria-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.galeria-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    background: #ffffff;
}

.galeria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-card:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-card:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.galeria-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: #ffffff;
}

/* Responsividade para Galeria */
@media (max-width: 768px) {
    .procedimento-image img {
        height: 150px;
    }
    
    .galeria-card {
        height: 250px;
    }
    
    .galeria-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .galeria-overlay h5 {
        font-size: 1rem;
    }
    
    .galeria-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .procedimento-image img {
        height: 120px;
    }
    
    .galeria-card {
        height: 200px;
    }
    
    .galeria-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .galeria-overlay h5 {
        font-size: 0.9rem;
    }
    
    .galeria-overlay p {
        font-size: 0.75rem;
    }
}

/* Estilos para a seção de residência na página principal */
.residencia-hero-content h3 {
    color: var(--preto-carvao);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.residencia-hero-content p {
    color: var(--cinza-chumbo);
    font-size: 1.1rem;
    line-height: 1.6;
}

.residencia-features .feature-item-residencia {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.residencia-features .feature-item-residencia span {
    color: var(--preto-carvao);
    font-size: 1rem;
    font-weight: 500;
}

.residencia-cta {
    margin-top: 2rem;
}

.residencia-visual {
    position: relative;
    text-align: center;
}

.residencia-image-container {
    position: relative;
    z-index: 1;
}

.residencia-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.floating-card-residencia {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    max-width: 250px;
    animation: cardFloat 3s ease-in-out infinite;
}

.card-icon-residencia {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000;
    font-size: 1.5rem;
}

.card-content-residencia h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--preto-carvao);
}

.card-content-residencia p {
    font-size: 0.9rem;
    color: var(--preto-carvao);
    margin: 0;
    font-weight: 500;
}

/* Estilos para o modal de residência */
.residencia-option {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.residencia-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.5);
}

.residencia-option .escolha-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.residencia-option .escolha-title {
    color: white;
}

.residencia-option .escolha-description {
    color: rgba(255, 255, 255, 0.9);
}

.residencia-option .feature-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.residencia-option .escolha-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsividade para a seção de residência */
@media (max-width: 768px) {
    .residencia-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .residencia-hero-content p {
        font-size: 1rem;
    }
    
    .floating-card-residencia {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .residencia-cta {
        text-align: center;
    }
    
    .residencia-cta .btn {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .residencia-hero-content h3 {
        font-size: 1.3rem;
    }
    
    .residencia-features .feature-item-residencia {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .residencia-features .feature-item-residencia i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Efeitos de partículas flutuantes para o modal */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8; 
    }
}

.escolha-option::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.residencia-option::before {
    animation-delay: 0.5s;
    background: rgba(255, 255, 255, 0.4);
}

/* Efeito de brilho para os ícones */
.escolha-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.escolha-option:hover .escolha-icon::before {
    opacity: 1;
}

/* Novos estilos para o modal melhorado */
.modal-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.modal-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.modal-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(203, 175, 135, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.title-gradient {
    background: linear-gradient(135deg, #B87474 0%, #CBAF87 50%, #1C1C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B87474, #CBAF87);
    border-radius: 2px;
}

.modal-timer {
    margin-top: 1.5rem;
    text-align: center;
}

.timer-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin: 0 auto 0.5rem;
    overflow: hidden;
    position: relative;
}

.timer-progress {
    height: 100%;
    background: linear-gradient(90deg, #B87474, #CBAF87);
    border-radius: 2px;
    width: 0%;
    transition: width 1s linear;
    position: relative;
}

.timer-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: timerShine 2s ease-in-out infinite;
}

@keyframes timerShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.timer-text {
    font-size: 0.9rem;
    color: var(--cinza-chumbo);
    font-weight: 500;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.escolha-option:hover .icon-glow {
    opacity: 1;
}

.option-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.option-particles::before,
.option-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.option-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.option-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Equipe Completa Home - Design Moderno */
.equipe-completa-home {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.equipe-completa-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23B87474" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.equipe-badge-home {
    display: inline-block;
    background: linear-gradient(45deg, #B87474, #CBAF87);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(184, 116, 116, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.equipe-badge-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 116, 116, 0.4);
}

.equipe-title-home {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #B87474, #CBAF87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.equipe-subtitle-home {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.equipe-showcase-home {
    position: relative;
    z-index: 2;
}

.equipe-image-container-home {
    position: relative;
}

.equipe-image-wrapper-home {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.equipe-image-wrapper-home:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 35px 80px rgba(0,0,0,0.2);
}

.equipe-image-home {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.equipe-image-wrapper-home:hover .equipe-image-home {
    transform: scale(1.05);
}

.equipe-image-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 116, 116, 0.8), rgba(203, 175, 135, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipe-image-wrapper-home:hover .equipe-image-overlay-home {
    opacity: 1;
}

.overlay-content-home {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.equipe-image-wrapper-home:hover .overlay-content-home {
    transform: translateY(0);
}

.overlay-content-home i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content-home span {
    font-weight: 600;
    font-size: 1.1rem;
}

.equipe-stats-cards-home {
    display: flex;
    gap: 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

.stat-card-mini-home {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.stat-card-mini-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-card-mini-home .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #B87474;
    margin-bottom: 0.3rem;
}

.stat-card-mini-home .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.equipe-features-modern-home {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card-modern-home {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 116, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card-modern-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #B87474, #CBAF87);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card-modern-home:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: rgba(184, 116, 116, 0.3);
}

.feature-card-modern-home:hover::before {
    transform: scaleY(1);
}

.feature-icon-home {
    background: linear-gradient(45deg, #B87474, #CBAF87);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card-modern-home:hover .feature-icon-home {
    transform: scale(1.1) rotate(5deg);
}

.feature-content-home h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
}

.feature-content-home p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.equipe-cta-home {
    background: linear-gradient(135deg, #1C1C1C 0%, #B87474 100%);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.equipe-cta-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.equipe-cta-home h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.equipe-cta-home p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.equipe-cta-buttons-home {
    position: relative;
    z-index: 2;
}

.equipe-cta-buttons-home .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsividade para Equipe Completa Home */
@media (max-width: 768px) {
    .equipe-title-home {
        font-size: 2.2rem;
    }
    
    .equipe-subtitle-home {
        font-size: 1rem;
    }
    
    .equipe-image-wrapper-home {
        transform: none;
    }
    
    .equipe-image-wrapper-home:hover {
        transform: scale(1.02);
    }
    
    .equipe-stats-cards-home {
        margin-top: -1rem;
    }
    
    .stat-card-mini-home {
        padding: 1rem;
    }
    
    .stat-card-mini-home .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-card-modern-home {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .feature-icon-home {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content-home h4 {
        font-size: 1.1rem;
    }
    
    .equipe-cta-home {
        padding: 2rem 1.5rem;
    }
    
    .equipe-cta-home h3 {
        font-size: 1.6rem;
    }
    
    .equipe-cta-buttons-home {
        flex-direction: column;
        align-items: center;
    }
    
    .equipe-cta-buttons-home .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .equipe-completa-home {
        padding: 3rem 0;
    }
    
    .equipe-title-home {
        font-size: 1.8rem;
    }
    
    .equipe-badge-home {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .equipe-stats-cards-home {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .feature-card-modern-home {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .feature-icon-home {
        align-self: center;
    }
    
    .equipe-cta-home h3 {
        font-size: 1.4rem;
    }
    
    .equipe-cta-home p {
        font-size: 1rem;
    }
}