/* ========================================
   DRA. BARBARA COCCO — PREMIUM WEBSITE
   Rose Gold Elegance Theme
   ======================================== */

/* ===== VARIABLES ===== */
:root {
    --bg-primary: #FFFAF7;
    --bg-alt: #FFF0EB;
    --bg-dark: #2D2A26;
    --accent: #C5986A;
    --accent-hover: #B8845A;
    --accent-light: #E8D5C8;
    --accent-glow: rgba(197, 152, 106, 0.3);
    --text-primary: #2D2A26;
    --text-secondary: #6B6560;
    --text-light: #9B9590;
    --white: #FFFFFF;
    --border: rgba(197, 152, 106, 0.2);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 20px rgba(45, 42, 38, 0.06);
    --shadow-md: 0 8px 40px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 42, 38, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

body.loading {
    overflow: hidden;
}

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

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

ul { list-style: none; }

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

em {
    font-style: italic;
    color: var(--accent);
}

.hide-mobile {
    display: inline;
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.loader-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    animation: loaderExpand 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
}

@keyframes loaderExpand {
    0%, 100% { width: 30px; opacity: 0.3; }
    50% { width: 60px; opacity: 1; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--accent-hover);
}

.cursor-outline.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent-hover);
    opacity: 0.3;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(255, 250, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 12px 0;
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-dra {
    color: var(--accent);
    font-weight: 300;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-whatsapp-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }

.btn-mobile-whatsapp {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.35s;
}

.mobile-menu.active .btn-mobile-whatsapp {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-parallax-img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-alt) 50%, var(--accent-light) 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 250, 247, 0.3) 0%,
        rgba(255, 250, 247, 0.1) 40%,
        rgba(255, 250, 247, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero h1 em {
    font-weight: 400;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 20px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent-light);
    letter-spacing: 2px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

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

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag-light {
    color: var(--accent-light);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 120px 0;
}

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

.sobre-img-wrapper {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-img-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.sobre-img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--accent);
    border-radius: 200px 200px 20px 20px;
    z-index: -1;
}

.sobre-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

.sobre-image {
    position: relative;
}

.sobre-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 8px;
}

.sobre-divider {
    width: 60px;
    height: 1.5px;
    background: var(--accent);
    margin: 20px 0 28px;
}

.sobre-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

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

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FILOSOFIA ===== */
.filosofia {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.filosofia-content {
    max-width: 700px;
    margin: 0 auto;
}

.filosofia blockquote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 28px;
}

.filosofia blockquote em {
    color: var(--accent);
}

.filosofia p {
    color: var(--text-light);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== PROCEDIMENTOS ===== */
.procedimentos {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.proc-card {
    position: relative;
    cursor: pointer;
}

.proc-card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.proc-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.proc-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.proc-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent-light);
    position: absolute;
    top: 20px;
    right: 24px;
    opacity: 0.5;
}

.proc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.proc-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.proc-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.4s ease;
}

.proc-card-inner:hover .proc-hover-line {
    width: 100%;
}

/* ===== RESULTADOS ===== */
.resultados {
    padding: 120px 0;
}

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

.resultado-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.resultado-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.resultado-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.resultado-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.resultado-before {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #e8d5c8 0%, #d4bfb0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultado-after {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #C5986A 0%, #B8845A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultado-before span,
.resultado-after span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.resultado-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--accent);
}

.resultado-info {
    padding: 20px 24px;
}

.resultado-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.resultado-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ===== NÚMEROS ===== */
.numeros {
    padding: 80px 0;
    background: var(--bg-alt);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.numero-item {
    padding: 32px;
}

.numero-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.numero-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
}

.numero-label {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    padding: 120px 0;
}

.depoimentos-swiper {
    padding-bottom: 60px;
}

.depoimento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    box-shadow: var(--shadow-md);
}

.depoimento-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.depoimento-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

.depoimento-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.depoimento-author span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.swiper-pagination-bullet {
    background: var(--accent-light);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ===== INSTAGRAM ===== */
.instagram-section {
    padding: 120px 0;
    background: var(--bg-alt);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-placeholder span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
}

.insta-p2 { background: linear-gradient(135deg, #d4a98a 0%, #b8845a 100%); }
.insta-p3 { background: linear-gradient(135deg, #e8d5c8 0%, #c5986a 100%); }
.insta-p4 { background: linear-gradient(135deg, #c5986a 0%, #8a6b4a 100%); }

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 42, 38, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.instagram-cta {
    text-align: center;
}

/* ===== CONTATO ===== */
.contato {
    padding: 120px 0;
}

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

.contato-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contato-info > p {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-primary);
}

.contato-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contato-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contato-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Form */
.contato-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contato-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6560' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

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

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-img-wrapper img {
        height: 450px;
    }

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

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    html { font-size: 15px; }

    .nav-links { display: none; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hide-mobile { display: none; }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .sobre-content h2 {
        font-size: 2.5rem;
    }

    .sobre-img-wrapper {
        border-radius: 100px 100px 20px 20px;
    }

    .sobre-img-accent {
        border-radius: 100px 100px 20px 20px;
    }

    .filosofia blockquote {
        font-size: 1.8rem;
    }

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

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

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

    .contato-info h2 {
        font-size: 2.2rem;
    }

    .contato-form-wrapper {
        padding: 32px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .numero-value {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .sobre-img-wrapper img {
        height: 350px;
    }

    .loader-text {
        font-size: 1.1rem;
    }

    .loader-line {
        width: 30px;
    }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth reveal for images */
.reveal-image {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-image.revealed {
    clip-path: inset(0 0 0 0);
}
