/* Tema Sofisticado - Clínica Odontológica DTM */
:root {
    --primary-color: #044A75; /* Azul escuro do logo */
    --secondary-color: #0F75BC; /* Azul intermediário */
    --accent-color: #4AC8ED; /* Azul claro/turquesa do logo */
    --bege-color: #f5ede6; /* Bege sofisticado */
    --white: #ffffff;
    --text-color: #222;
    --text-light: #666;
    --light-bg: #f8f9fa;
    --dark-bg: #044A75;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
    
    /* Novas variáveis para glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --backdrop-blur: blur(10px);
    
    /* Gradientes vibrantes */
    --gradient-primary: linear-gradient(135deg, #044A75 0%, #0F75BC 50%, #4AC8ED 100%);
    --gradient-accent: linear-gradient(135deg, #4AC8ED 0%, #0F75BC 50%, #044A75 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f5ede6 0%, #e8f4f8 50%, #f0f8ff 100%);
    color: var(--text-color);
    font-family: 'Manrope', 'Inter', 'Montserrat', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Formas flutuantes animadas */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

body::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

body::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    position: relative;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

a:after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

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

a.btn:after, .btn:after {
    display: none !important;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-family: 'Manrope', 'Inter', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 18px;
}

h1 {
    font-size: 2.9rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

section, .site-footer {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 32px;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito shimmer nos cartões */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    animation: shimmer-effect 6s infinite;
    pointer-events: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn.primary-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(76,200,237,0.3);
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 14px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.5s ease;
}

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

.btn.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76,200,237,0.4);
}

.large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Header Styles com glassmorphism */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Logo animado com ícone de dente rotativo */
.logo {
    position: relative;
    display: flex;
    align-items: left;
    gap: 50px;
    transition: all 0.3s ease;
}

/*.logo::before {
    content: '🦷';
    font-size: 2rem;
    animation: rotate 4s linear infinite;
    filter: drop-shadow(0 0 10px rgba(76,200,237,0.5));
}*/

.logo:hover::before {
    filter: drop-shadow(0 0 15px rgba(76,200,237,0.8));
    transform: scale(1.1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo img {
    /*height: 60px;*/
    filter: drop-shadow(0 0 10px rgba(76,200,237,0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(76,200,237,0.5));
    transform: scale(1.05);
}

/* Menu de navegação moderno */
.main-nav {
    position: relative;
}

.main-nav ul {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 200, 237, 0.1), transparent);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.main-nav ul li a:hover::before {
    left: 100%;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 200, 237, 0.15);
    border-color: rgba(76, 200, 237, 0.3);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li a.active {
    color: var(--primary-color);
    background: rgba(76, 200, 237, 0.1);
    border-color: rgba(76, 200, 237, 0.3);
    box-shadow: 0 4px 15px rgba(76, 200, 237, 0.2);
    transform: translateY(-1px);
}

.main-nav ul li a.active::after {
    width: 100%;
}

/* Menu mobile toggle moderno */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(76, 200, 237, 0.1);
    border-color: rgba(76, 200, 237, 0.3);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent-color);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent-color);
}

/* Header com scroll */
.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(76, 200, 237, 0.1);
    padding: 10px 0;
}

.header-scrolled .main-nav ul li a {
    padding: 10px 16px;
    font-size: 0.95rem;
}

.header-scrolled .logo img {
    /*height: 50px;*/
}

.header-scrolled .logo::before {
    font-size: 1.5rem;
}

/* Hero Section com glassmorphism */
.hero-section {
    /*background: var(--gradient-primary);*/
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0px;
    padding: 130px 0 10px;
    height: 800px;
    background-image: url('../images/bgClinica.jpeg');
    /*background-size: cover;*/
    background-size: 100% 100%;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35); /* escurece um pouco, mas não apaga o fundo */
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

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

.hero-text {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    text-shadow: 0 0 30px rgba(76,200,237,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-text h6 {
    color:#fff;
    padding: 10px 10px 5px;
    text-shadow: 0 0 30px rgba(76,200,237,0.5);
    animation: fadeInUp 1s ease-out;
    
    background: rgba(4, 74, 117, 0.5);
}

.hero-text h5 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    color: rgba(255,255,255,0.97);
    text-shadow: 0 3px 16px rgba(0,0,0,0.45);
    font-size: 1.1rem;
    position: relative;
}

.hero-text h5:before, .hero-text h5:after {
    font-family: inherit;
    font-style: inherit;
    color: inherit;
    font-size: 2.2rem;
    /*vertical-align: top;*/
    opacity: 0.7;
}

.hero-text h5:before {
    content: '“';
    margin-right: 6px;
}

.hero-text h5:after {
    content: '”';
    margin-left: 6px;
}


.hero-text .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img {
    border-radius: 20px;
    /*box-shadow: 0 20px 40px rgba(0,0,0,0.2);*/
    filter: drop-shadow(0 0 20px rgba(76,200,237,0.3));
}

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

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

.counter-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.counter {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

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

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(76,200,237,0.3);
}

.counter-title {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 10px;
}

/* Seção Quem Somos */
.quem-sou-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.quem-sou-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: justify;
}

.quem-sou-texto {
    animation: fadeInLeft 1s ease-out;
}

.quem-sou-imagem {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.quem-sou-imagem img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.quem-sou-imagem:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

/* Seção Benefícios */
.beneficios-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.beneficios-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-box {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.beneficio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.6s ease;
}

.beneficio-box:hover::before {
    left: 100%;
}

.beneficio-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.beneficio-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(76,200,237,0.3));
    transition: var(--transition);
}

.beneficio-box:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(76,200,237,0.5));
}

.beneficio-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Seção Especialidades */
.especialidades-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.especialidades-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.especialidades-imagem {
    animation: fadeInLeft 1s ease-out;
}

.especialidades-texto {
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* Badges das especialidades com hover effects */
.exp-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    /*padding: 8px 16px;*/
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exp-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.3s ease;
}

.exp-badge:hover::before {
    left: 100%;
}

.exp-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(76,200,237,0.3);
}

.exp-anos {
    font-size: 1.2rem;
    font-weight: 700;
}

.accordion-container {
    margin-top: 30px;
}

.accordion-item {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(76,200,237,0.05);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: var(--transition);
}

.accordion-icon:before,
.accordion-icon:after {
    content: '';
    position: absolute;
    background: var(--accent-color);
    transition: var(--transition);
}

.accordion-icon:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon:after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon:after {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

/* Novo estilo para o conteúdo do accordion na seção especialidades */
.especialidades-section .accordion-content {
    background: rgba(255,255,255,0.92);
    color: #044A75;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    font-size: 1.08em;
}

.accordion-item.active .accordion-content {
    min-height: 200px;
    max-height: 100%;
    padding: 10px 25px 20px;
    text-align: justify;
}

/* Accordion container: espaçamento entre itens */
.especialidades-section .accordion-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 18px;
}
/* Accordion item: borda, sombra, fundo suave */
.especialidades-section .accordion-item {
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e3eaf2;
    transition: box-shadow 0.2s, border 0.2s;
}
.especialidades-section .accordion-item.active {
    box-shadow: 0 8px 32px rgba(4,74,117,0.10);
    border-color: #4AC8ED;
}
/* Accordion header: fonte, layout, ícone */
.especialidades-section .accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 22px 32px 18px 32px;
    font-size: 1.18em;
    font-weight: 700;
    color: #044A75;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
}
.especialidades-section .accordion-header h3 {
    margin: 0;
    font-size: 1.08em;
    font-weight: 700;
    color: #044A75;
}
.especialidades-section .accordion-icon {
    margin-left: 12px;
    font-size: 1.5em;
    color: #4AC8ED;
    transition: transform 0.2s;
}
.especialidades-section .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
/* Accordion content: fundo, padding, transição */
.especialidades-section .accordion-content {
    background: rgba(255,255,255,0.97);
    color: #044A75;
    border-radius: 0 0 18px 18px;
    padding: 18px 32px 22px 32px;
    font-size: 1.05em;
    box-shadow: none;
    border-top: 1px solid #e3eaf2;
    margin: 0;
    transition: max-height 0.3s, opacity 0.3s;
    max-height: 800px;
    opacity: 1;
}
.especialidades-section .accordion-item:not(.active) .accordion-content {
    max-height: 0;
    opacity: 0;
    padding: 0 32px;
    overflow: hidden;
    border-top: none;
}
/* Responsivo */
@media (max-width: 700px) {
    .especialidades-section .accordion-header,
    .especialidades-section .accordion-content {
        padding-left: 12px;
        padding-right: 12px;
    }
    .especialidades-section .accordion-container {
        gap: 14px;
    }
}

.nosso-espaco-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.nosso-espaco-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.nosso-espaco-galeria {
    animation: fadeInLeft 1s ease-out;
}

.nosso-espaco-info {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.progresso-item {
    margin-bottom: 25px;
}

.progresso-titulo {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.progresso-barra {
    background: rgba(76,200,237,0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progresso-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.progresso-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    animation: shimmer-progress 2s infinite;
}

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

.progresso-percentual {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
}

.espaco-texto {
    margin-top: 30px;
}

.espaco-texto h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.espaco-texto ul {
    list-style: none;
    padding-left: 0;
}

.espaco-texto li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.espaco-texto li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Seção Depoimentos */
.depoimentos-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.depoimentos-section h2 {
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.depoimentos-slider {
    margin-bottom: 50px;
}

.depoimento-item {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.depoimento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.6s ease;
}

.depoimento-item:hover::before {
    left: 100%;
}

.depoimento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.depoimento-perfil {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.depoimento-info {
    flex: 1;
}

.depoimento-nome {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.depoimento-data {
    font-size: 0.9rem;
    color: var(--text-light);
}

.depoimento-estrelas {
    color: #ffd700;
    font-size: 1.1rem;
}

.depoimento-texto {
    color: var(--text-color);
    line-height: 1.6;
}

.depoimentos-cta {
    text-align: center;
    margin-top: 40px;
}

.depoimentos-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Seção Localização */
.localizacao-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-info {
    animation: fadeInLeft 1s ease-out;
}

.info-box {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mapa {
    animation: fadeInRight 1s ease-out 0.3s both;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* Footer */
.site-footer {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    margin-bottom: 0;
    border-radius: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(76,200,237,0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76,200,237,0.4);
}

.whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-flutuante a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-flutuante a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    transform: scale(1.2);
}

/* Animações gerais */
.fadeIn {
    animation: fadeIn 1s ease-out;
}

.slideUp {
    animation: slideUp 1s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsividade */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 80px 0;
    }

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

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .counter-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter {
        padding: 20px;
    }

    .quem-sou-content,
    .especialidades-content,
    .nosso-espaco-content,
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .especialidades-imagem {
        order: 2;
    }

    .exp-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

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

    .videos-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    /* Menu mobile moderno */
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 40px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(76, 200, 237, 0.1);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
        visibility: hidden;
    }

    .main-nav.active {
        top: 80px;
        transform: translateY(0);
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .main-nav ul li {
        margin: 0;
    }

    .main-nav ul li a {
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(76, 200, 237, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .main-nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-accent);
        opacity: 0.1;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .main-nav ul li a:hover::before {
        left: 100%;
    }

    .main-nav ul li a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(76, 200, 237, 0.2);
        border-color: rgba(76, 200, 237, 0.3);
        background: rgba(76, 200, 237, 0.05);
    }

    .main-nav ul li a.active {
        background: rgba(76, 200, 237, 0.1);
        border-color: rgba(76, 200, 237, 0.3);
        color: var(--primary-color);
        box-shadow: 0 6px 20px rgba(76, 200, 237, 0.15);
        transform: translateY(-2px);
    }

    /* Menu toggle mobile moderno */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Overlay para fechar menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    /* Ajustes do header mobile */
    .header-scrolled .main-nav {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .header-scrolled .main-nav.active {
        top: 70px;
    }

    /* Animações de entrada para itens do menu */
    .main-nav ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .main-nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.active ul li:nth-child(6) { transition-delay: 0.35s; }
    .main-nav.active ul li:nth-child(7) { transition-delay: 0.4s; }

    .beneficios-boxes {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

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

    .depoimentos-slider {
        margin: 0 -10px;
    }

    .depoimentos-section h2 {
        font-size: 1.8rem;
    }

    .depoimento-item {
        margin: 5px;
        padding: 20px;
    }
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    color: var(--accent-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    z-index: 1;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before, 
.slick-next:before {
    font-size: 20px;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }
}

/* Placeholder styles */
input::placeholder, textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Formas flutuantes decorativas */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.05;
    animation: float-shape 15s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 20%;
    animation-delay: 7s;
}

@keyframes float-shape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.05;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.08;
    }
    50% { 
        transform: translateY(10px) rotate(180deg) scale(0.9);
        opacity: 0.06;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.05);
        opacity: 0.07;
    }
}

/* Efeitos de glassmorphism aprimorados */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Efeitos de partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Efeitos de hover aprimorados */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Animações de entrada escalonadas */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-animation > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-animation.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Efeitos de texto */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(76, 200, 237, 0.5);
}

/* Efeitos de botão aprimorados */
.btn-modern {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 200, 237, 0.3);
}

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

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

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 200, 237, 0.4);
}

/* Efeitos de loading */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(76, 200, 237, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Efeitos de scroll suave */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Efeitos de foco aprimorados */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 200, 237, 0.3);
}

/* Efeitos de transição de página */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Efeitos de hover para imagens */
.image-hover {
    transition: all 0.3s ease;
    filter: brightness(1);
}

.image-hover:hover {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

/* Efeitos de texto animado */
.animated-text {
    overflow: hidden;
    position: relative;
}

.animated-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: text-shine 3s infinite;
}

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

/* Efeitos de glassmorphism para cards */
.glass-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 24px 10px;
}

.glass-card-modern::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.6s ease;
}

.glass-card-modern:hover::before {
    left: 100%;
}

.glass-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* Efeitos de animação para elementos específicos */
.hero-title {
    animation: heroTitleAnimation 1.5s ease-out;
}

@keyframes heroTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Efeitos de hover para links */
.link-hover {
    position: relative;
    transition: all 0.3s ease;
}

.link-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

.link-hover:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Efeitos de animação para números */
.number-animation {
    display: inline-block;
    animation: numberBounce 0.6s ease-out;
}

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

/* Efeitos de hover para ícones */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(76, 200, 237, 0.5));
}

/* Efeitos de animação para seções */
.section-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efeitos de glassmorphism para o header */
.header-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Efeitos de animação para o menu mobile */
.mobile-menu-animation {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-animation.active {
    transform: translateX(0);
}

/* Efeitos de hover para cards de benefícios */
.beneficio-box-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficio-box-hover:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Efeitos de animação para o accordion */
.accordion-animation {
    transition: all 0.3s ease;
}

.accordion-animation:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Efeitos de glassmorphism para depoimentos */
.depoimento-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.depoimento-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.02);
}

/* Efeitos de animação para o mapa */
.mapa-animation {
    transition: all 0.3s ease;
}

.mapa-animation:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Efeitos de glassmorphism para informações de contato */
.info-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Efeitos de animação para o footer */
.footer-animation {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.footer-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: footer-shine 4s infinite;
}

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

/* Efeito de brilho nos links do menu */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Efeito de pulso para o logo */
.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(76, 200, 237, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: logo-pulse 3s infinite;
}

@keyframes logo-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Efeito de animação para o menu mobile */
.main-nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito de profundidade para links do menu */
.main-nav ul li a {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav ul li a:hover {
    box-shadow: 0 8px 25px rgba(76, 200, 237, 0.15);
    transform: translateY(-2px);
}

/* Efeito de foco para acessibilidade */
.main-nav ul li a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 200, 237, 0.3);
}

/* Efeito de loading para o menu */
.menu-loading {
    position: relative;
    overflow: hidden;
}

.menu-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: menu-loading 1.5s infinite;
}

@keyframes menu-loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Blog Layout Responsivo e Harmônico --- */
@media (max-width: 992px) {
  .blog-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .blog-posts-column, .blog-sidebar-column {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .blog-sidebar {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .blog-section, .glass-card-modern, .blog-sidebar {
    padding: 24px 10px !important;
    border-radius: 12px;
  }
  .blog-banner-content h1 {
    font-size: 2rem;
  }
  .blog-banner-content p {
    font-size: 1rem;
  }
  .posts-grid, .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

.blog-posts-column {
  padding: 0 12px;
  /*xxx*/
  float: inline-start;
  min-width: 65%; 

}

.blog-sidebar-column {
  padding: 0 12px;
  float: inline-start;
  min-width: 28%;

}

.blog-sidebar .sidebar-widget {
  margin-bottom: 28px;
}

.blog-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}

/* Imagens dos posts responsivas e harmônicas */
.post-image img, .featured-image img, .recent-post-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(76,200,237,0.07);
}

@media (max-width: 600px) {
  .post-image img, .featured-image img, .recent-post-image img {
    height: 120px;
  }
}

/* Botões e links harmônicos */
.btn.primary-btn, .btn.primary-btn.w-100 {
  font-size: 1rem;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
}

/* Animações suaves para seções do blog */
.blog-section, .blog-sidebar, .featured-post, .post-card {
  animation: fadeIn 0.8s ease;
}

/* Foco acessível para links */
.blog-section a:focus, .blog-sidebar a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}