/* ============================================== */
/* =============== CSS RESET ==================== */
/* ============================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================== */
/* ========== VARIÁVEIS CSS (CORES) ============= */
/* ============================================== */

:root {
    /* Cores Principais */
    --primary-color: #B94A3A;
    --primary-dark: #8B3A2E;
    --primary-light: #D4776A;
    
    /* Cores de Fundo */
    --bg-cream: #F8F3EE;
    --bg-white: #FFFFFF;
    --bg-light: #FDF9F6;
    
    /* Cores de Texto */
    --text-color: #3D3D3D;
    --text-light: #6B6B6B;
    --text-white: #FFFFFF;
    
    /* Cores Auxiliares */
    --border-color: #E8E0D8;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --whatsapp-color: #25D366;
    
    /* Tipografia */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --section-padding: 100px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================== */
/* ============ CLASSES UTILITÁRIAS ============= */
/* ============================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

/* ============================================== */
/* ================= BOTÕES ===================== */
/* ============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-cta {
    background-color: var(--whatsapp-color);
    color: var(--text-white);
    border: 2px solid var(--whatsapp-color);
    padding: 16px 40px;
    font-size: 0.9rem;
}

.btn-cta:hover {
    background-color: #20BA5C;
    border-color: #20BA5C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================== */
/* ================= HEADER ===================== */
/* ============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-cream);
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-link.active {
    color: var(--primary-color);
}

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

.nav-btn {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

/* ============================================== */
/* ============== HERO SECTION ================== */
/* ============================================== */

.hero {
    min-height: auto; /* Removido o 100vh */
    padding: 120px 0 80px; /* Padding superior maior por causa do header fixo */
    background-color: var(--bg-cream);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Imagem um pouco maior */
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 12px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--text-color);
}

.hero-location {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================== */
/* ======= HERO IMAGE - MOLDURA CRIATIVA ======== */
/* ============================================== */

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px; /* AUMENTADO */
}

.hero-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 580px; /* Altura fixa maior */
    object-fit: cover;
    object-position: top center;
    border-radius: 62% 38% 70% 30% / 30% 62% 38% 70%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover img {
    border-radius: 38% 62% 30% 70% / 62% 30% 70% 38%;
}

/* Círculo decorativo atrás - MAIOR */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -10%;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 62% 38% 70% 30% / 30% 62% 38% 70%;
    z-index: 1;
    opacity: 0.12;
    animation: morphBlob 8s ease-in-out infinite;
}

/* Anel decorativo - MAIOR */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -12%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* Dots decorativos */
.hero-decoration {
    position: absolute;
    z-index: 1;
}

.hero-decoration.dots-top {
    top: -20px;
    right: 5%;
    display: grid;
    grid-template-columns: repeat(3, 10px);
    gap: 10px;
}

.hero-decoration.dots-bottom {
    bottom: 5%;
    left: -30px;
    display: grid;
    grid-template-columns: repeat(4, 8px);
    gap: 8px;
}

.hero-decoration span {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
}

.hero-decoration.dots-bottom span {
    width: 8px;
    height: 8px;
}

/* Animação do blob */
@keyframes morphBlob {
    0%, 100% {
        border-radius: 62% 38% 70% 30% / 30% 62% 38% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 38% 62% 30% 70% / 62% 30% 70% 38%;
    }
    50% {
        border-radius: 70% 30% 62% 38% / 38% 70% 30% 62%;
        transform: rotate(5deg) scale(1.02);
    }
    75% {
        border-radius: 30% 70% 38% 62% / 70% 38% 62% 30%;
    }
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ============================================== */
/* ============== PARA QUEM É =================== */
/* ============================================== */

.para-quem {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

/* Linha decorativa no topo do card */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.card:hover::before {
    opacity: 1;
}

/* Shape de fundo no card */
.card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.card:hover::after {
    opacity: 0.03;
    bottom: -60px;
    right: -60px;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================== */
/* ================ SOBRE MIM =================== */
/* ============================================== */

.sobre {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Imagem um pouco maior */
    gap: 60px;
    align-items: center;
}

/* ============================================== */
/* ====== SOBRE IMAGE - MOLDURA CRIATIVA ======== */
/* ============================================== */

.sobre-image {
    position: relative;
}

.sobre-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 480px; /* AUMENTADO */
}

.sobre-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 550px; /* ALTURA FIXA MAIOR */
    object-fit: cover;
    object-position: top center;
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    box-shadow: 0 25px 60px rgba(185, 74, 58, 0.18);
    transition: var(--transition-slow);
}

.sobre-image-wrapper:hover img {
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    box-shadow: 0 30px 70px rgba(185, 74, 58, 0.22);
}

/* Moldura decorativa atrás - MAIOR */
.sobre-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    z-index: 1;
    opacity: 0.4;
    transition: var(--transition);
}

.sobre-image-wrapper:hover::before {
    top: -25px;
    left: -25px;
    opacity: 0.6;
}

/* Shape sólido decorativo - MAIOR */
.sobre-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
    z-index: 0;
    opacity: 0.1;
    animation: morphBlob 10s ease-in-out infinite;
}

/* Linha decorativa - MAIOR */
.sobre-line-decoration {
    position: absolute;
    top: 15%;
    left: -50px;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.sobre-line-decoration::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.sobre-line-decoration::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.4;
}

/* Badge CRN - MAIOR */
.sobre-badge {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 24px 32px;
    border-radius: 20px 60px 20px 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    transition: var(--transition);
}

.sobre-image-wrapper:hover .sobre-badge {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(185, 74, 58, 0.35);
}

.sobre-badge span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.sobre-badge strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Dots decorativos - NOVO */
.sobre-image-wrapper .sobre-dots {
    position: absolute;
    top: -10px;
    right: 20%;
    display: grid;
    grid-template-columns: repeat(3, 10px);
    gap: 10px;
    z-index: 1;
}

.sobre-image-wrapper .sobre-dots span {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
}

/* Sobre Text */
.sobre-text .section-subtitle {
    text-align: left;
}

.sobre-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.sobre-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.sobre-text p strong {
    color: var(--text-color);
}

.sobre-credentials {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-color);
    padding: 12px 16px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.credential:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    font-size: 1.4rem;
}

/* ============================================== */
/* =============== DIFERENCIAL ================== */
/* ============================================== */

.diferencial {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

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

.diferencial-text .section-subtitle {
    text-align: left;
}

.diferencial-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.diferencial-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.diferencial-description strong {
    color: var(--primary-color);
}

.diferencial-highlight {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 24px;
}

.diferencial-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 20px 50px 20px 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 0 0 100% 0;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ============================================== */
/* ================== PLANOS ==================== */
/* ============================================== */

.planos {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plano-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.plano-destaque {
    background-color: var(--primary-color);
    transform: scale(1.05);
    overflow: hidden;
}

.plano-destaque:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Decoração no plano destaque */
.plano-destaque::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.plano-destaque::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.plano-destaque .plano-name,
.plano-destaque .plano-tagline,
.plano-destaque .plano-features li,
.plano-destaque .check {
    color: var(--text-white);
}

.plano-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 1;
}

.plano-header {
    padding: 40px 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.plano-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.plano-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.plano-body {
    padding: 20px 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.plano-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.check {
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.plano-footer {
    padding: 20px 30px 40px;
    position: relative;
    z-index: 1;
}

.plano-destaque .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.plano-destaque .btn-primary:hover {
    background-color: var(--bg-cream);
    border-color: var(--bg-cream);
}

.planos-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
}

.planos-note strong {
    color: var(--primary-color);
}

/* ============================================== */
/* =============== DEPOIMENTOS ================== */
/* ============================================== */

.depoimentos {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.depoimentos-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s ease;
}

.depoimento-card {
    position: relative;
    min-width: 100%;
    padding: 60px 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 30px 80px 30px 80px;
    text-align: center;
    overflow: hidden;
}

/* Elementos decorativos no card de depoimento */
.depoimento-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
}

.depoimento-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.depoimento-quote {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.depoimento-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.depoimento-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Navegação do Slider */
.depoimentos-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* ============================================== */
/* =============== ATENDIMENTO ================== */
/* ============================================== */

.atendimento {
    padding: var(--section-padding) 0;
    background-color: var(--bg-cream);
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.atendimento-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 30px 10px 30px 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.atendimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-radius: 10px 30px 10px 30px;
}

/* Barra decorativa no topo */
.atendimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.atendimento-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.atendimento-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.atendimento-location {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.atendimento-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.atendimento-convenio {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--bg-cream);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
}

/* ============================================== */
/* =============== LOCALIZAÇÃO ================== */
/* ============================================== */

.localizacao {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

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

.mapa-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mapa-container iframe {
    display: block;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ============================================== */
/* =================== CTA ====================== */
/* ============================================== */

.cta {
    padding: var(--section-padding) 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    margin-bottom: 24px;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
}

.cta-instagram {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.cta-instagram:hover {
    color: var(--text-white);
}

/* ============================================== */
/* ================== FOOTER ==================== */
/* ============================================== */

.footer {
    background-color: var(--text-color);
    padding: 60px 0 30px;
    color: var(--text-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-crn {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-dev {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================== */
/* =========== WHATSAPP FLUTUANTE =============== */
/* ============================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================== */
/* ============= ANIMAÇÕES DE SCROLL ============ */
/* ============================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================== */
/* ================ RESPONSIVO ================== */
/* ============================================== */

/* Tablet Grande */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image-wrapper {
        max-width: 420px;
    }
    
    .hero-image-wrapper img {
        height: 480px;
    }
    
    .hero-image-wrapper::after {
        width: 100px;
        height: 100px;
        left: -5%;
    }
    
    .sobre-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .sobre-image-wrapper {
        max-width: 400px;
    }
    
    .sobre-image-wrapper img {
        height: 480px;
    }
    
    .sobre-badge {
        right: -20px;
        padding: 20px 26px;
    }
    
    .sobre-image-wrapper::after {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plano-destaque {
        transform: scale(1);
        grid-column: span 2;
    }
    
    .plano-destaque:hover {
        transform: translateY(-8px);
    }
    
    .diferencial-content {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        height: 420px;
    }
    
    .hero-image-wrapper::before {
        width: 80%;
        height: 80%;
        right: -5%;
    }
    
    .hero-image-wrapper::after {
        width: 80px;
        height: 80px;
        left: 0;
        top: 0;
    }
    
    .hero-description {
        margin: 0 auto 12px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .sobre-image {
        order: 1;
        display: flex;
        justify-content: center;
    }
    
    .sobre-image-wrapper img {
        height: 450px;
    }
    
    .sobre-badge {
        right: -15px;
        bottom: 30px;
        padding: 18px 24px;
    }
    
    .sobre-line-decoration {
        display: none;
    }
    
    .sobre-image-wrapper::after {
        width: 120px;
        height: 120px;
    }
    
    .sobre-text {
        order: 2;
    }
    
    .sobre-text .section-subtitle,
    .sobre-text .section-title {
        text-align: center;
    }
    
    .sobre-credentials {
        align-items: center;
    }
    
    .credential {
        max-width: 320px;
        width: 100%;
        justify-content: center;
    }
    
    .sobre-text .btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    
    .diferencial-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .diferencial-text {
        text-align: center;
    }
    
    .diferencial-text .section-subtitle,
    .diferencial-text .section-title {
        text-align: center;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
    }
    
    .atendimento-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-btn {
        margin-top: 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 320px;
    }
    
    .hero-image-wrapper img {
        height: 380px;
    }
    
    /* Simplificar decorações no mobile */
    .hero-image-wrapper::before {
        display: none;
    }
    
    .hero-image-wrapper::after {
        width: 60px;
        height: 60px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .sobre-image-wrapper {
        max-width: 320px;
    }
    
    .sobre-image-wrapper img {
        height: 380px;
    }
    
    .sobre-image-wrapper::before {
        top: -12px;
        left: -12px;
    }
    
    .sobre-image-wrapper::after {
        display: none;
    }
    
    .sobre-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
        border-radius: 30px;
    }
    
    .credential {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    /* Seções */
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 30px 24px;
    }
    
    .diferencial-features {
        grid-template-columns: 1fr;
    }
    
    /* Planos */
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-destaque {
        grid-column: span 1;
    }
    
    /* Depoimentos */
    .depoimento-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .depoimento-quote {
        font-size: 4rem;
    }
    
    .depoimento-text {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-image-wrapper {
        max-width: 280px;
    }
    
    .hero-image-wrapper img {
        height: 320px;
        border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%;
    }
    
    .hero-image-wrapper::after {
        display: none;
    }
    
    .sobre-image-wrapper {
        max-width: 280px;
    }
    
    .sobre-image-wrapper img {
        height: 320px;
        border-radius: 50%;
    }
    
    .sobre-image-wrapper::before {
        border-radius: 50%;
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    
    .sobre-text p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .plano-header {
        padding: 30px 20px 15px;
    }
    
    .plano-body {
        padding: 15px 20px;
    }
    
    .plano-footer {
        padding: 15px 20px 30px;
    }
    
    .localizacao-info {
        padding: 0 10px;
    }
}

/* ============================================== */
/* ============ UTILITÁRIOS EXTRAS ============== */
/* ============================================== */

/* Classe para esconder elementos visualmente mas manter acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Desabilitar scroll quando menu mobile está aberto */
body.menu-open {
    overflow: hidden;
}

/* Focus para acessibilidade */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================== */
/* ========== MELHORIAS VISUAIS EXTRAS ========== */
/* ============================================== */

/* ============================================== */
/* ======== ANIMAÇÃO WHATSAPP FLUTUANTE ========= */
/* ============================================== */

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================== */
/* ========== BOTÃO VOLTAR AO TOPO ============== */
/* ============================================== */

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================== */
/* ============ GRADIENTE ANIMADO CTA =========== */
/* ============================================== */

.cta {
    background: linear-gradient(-45deg, #B94A3A, #D4776A, #8B3A2E, #B94A3A);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================== */
/* ========= SOMBRA COLORIDA NAS FOTOS ========== */
/* ============================================== */

.hero-image-wrapper img {
    box-shadow: 
        0 25px 50px -12px rgba(185, 74, 58, 0.25),
        0 0 0 1px rgba(185, 74, 58, 0.05);
}

.sobre-image-wrapper img {
    box-shadow: 
        0 25px 50px -12px rgba(185, 74, 58, 0.25),
        0 0 0 1px rgba(185, 74, 58, 0.05);
}

/* ============================================== */
/* ======== ÍCONES COM FUNDO GRADIENTE ========== */
/* ============================================== */

.card-icon {
    background: linear-gradient(135deg, rgba(185, 74, 58, 0.1) 0%, rgba(212, 119, 106, 0.1) 100%);
    padding: 16px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: scale(1.1);
}

.card:hover .card-icon svg {
    color: var(--text-white);
}

/* ============================================== */
/* ========== ZOOM SUTIL NAS FOTOS ============== */
/* ============================================== */

.hero-image-wrapper:hover img,
.sobre-image-wrapper:hover img {
    transform: scale(1.02);
}

/* ============================================== */
/* ========== TRANSIÇÃO DE PÁGINA =============== */
/* ============================================== */

body {
    animation: fadeInPage 0.5s ease-out;
}

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

/* ============================================== */
/* ========= RESPONSIVO PARA EXTRAS ============= */
/* ============================================== */

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}