/* ================================================
   DAUANE SOUTO — PSICÓLOGA ONLINE
   Design System & Styles
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #7C6AA0;
    --primary-light: #A48FCB;
    --primary-dark: #5A4B7A;
    --primary-bg: #F3EEFA;
    --accent: #D4A574;
    --accent-light: #F0DCC8;
    --text: #2D2640;
    --text-light: #6B6080;
    --text-muted: #9B91AB;
    --bg: #FDFCFF;
    --bg-alt: #F8F5FC;
    --card: #FFFFFF;
    --border: #E8E0F0;
    --shadow: 0 4px 24px rgba(124, 106, 160, 0.08);
    --shadow-lg: 0 12px 48px rgba(124, 106, 160, 0.12);
    --shadow-xl: 0 20px 60px rgba(124, 106, 160, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Utilities ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(124, 106, 160, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(124, 106, 160, 0.4);
    transform: translateY(-2px);
}
.btn-primary:disabled {
    background: var(--text-muted);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 12px 8px;
}
.btn-ghost:hover {
    color: var(--primary-dark);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-danger {
    background: #E74C3C;
    color: #fff;
}
.btn-danger:hover {
    background: #C0392B;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(253, 252, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(124, 106, 160, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-logo .psi-symbol {
    font-style: normal;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.btn-user {
    background: var(--primary-bg);
    color: var(--primary);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-user:hover {
    background: var(--primary-light);
    color: #fff;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    display: none;
    overflow: hidden;
    z-index: 100;
}
.user-dropdown.show {
    display: block;
    animation: fadeSlideDown 0.2s ease;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 0.92rem;
    color: var(--text);
    transition: var(--transition);
}
.user-dropdown a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-bg) 50%, var(--accent-light) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 40%;
    left: 50%;
    animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 24px;
}

.hero-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-text h1 em {
    color: var(--primary);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    width: 380px;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 12px;
}

.hero-img-placeholder i {
    font-size: 4rem;
    opacity: 0.9;
}

.hero-img-placeholder span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-img-placeholder small {
    opacity: 0.8;
    font-size: 0.95rem;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-card {
    position: absolute;
    background: var(--card);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.card-1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---------- Sections ---------- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2,
.sobre-text h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.section-header h2 em,
.sobre-text h2 em {
    color: var(--primary);
    font-style: italic;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Sobre ---------- */
.section-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.sobre-grid {
    grid-template-columns: 1fr 1.3fr;
}

.sobre-image {
    display: flex;
    justify-content: center;
}

.sobre-img-placeholder {
    width: 360px;
    height: 420px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.sobre-img-placeholder i {
    font-size: 5rem;
    color: var(--primary-light);
}

.sobre-photo-wrapper {
    width: 360px;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.sobre-photo-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 44%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.sobre-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.sobre-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--primary-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.highlight i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.highlight span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- Abordagem (Psicanálise) ---------- */
.abordagem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.abordagem-intro {
    text-align: center;
    margin-bottom: 48px;
    padding: 48px 40px;
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.abordagem-icon-main {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.abordagem-icon-main i {
    font-size: 2rem;
    color: #fff;
}

.abordagem-intro h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 18px;
}

.abordagem-intro p {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 12px;
}

.abordagem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.abordagem-card {
    background: var(--card);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.abordagem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.abordagem-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.abordagem-card:hover .abordagem-card-icon {
    background: var(--primary);
}

.abordagem-card-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.abordagem-card:hover .abordagem-card-icon i {
    color: #fff;
}

.abordagem-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text);
}

.abordagem-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.abordagem-cta {
    text-align: center;
    margin-top: 40px;
}

.service-card {
    background: var(--card);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Steps ---------- */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: var(--card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

.step-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-connector {
    color: var(--primary-light);
    font-size: 1.2rem;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-item[open] summary {
    background: var(--primary-bg);
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 22px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #F0B429;
    font-size: 0.9rem;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
}

.nome-oculto {
    color: var(--primary-light);
    letter-spacing: 2px;
    font-size: 0.75rem;
    opacity: 0.6;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Contato ---------- */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
    max-width: 760px;
    margin: 0 auto;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contato-item:hover {
    background: var(--primary-bg);
}

.contato-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contato-item strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.contato-item span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contato-form {
    background: var(--card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group label small {
    font-weight: 400;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 106, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-password {
    position: relative;
}

.input-password input {
    padding-right: 48px;
}

.toggle-pass {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}
.toggle-pass:hover {
    color: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
}
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- Modals ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 38, 64, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
    overflow-y: auto;
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.modal {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-lg {
    max-width: 560px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modal-close:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.modal-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-alt);
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.modal-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(124, 106, 160, 0.25);
}

.modal-form h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text);
}

.modal-form h2 i {
    color: var(--primary);
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.modal-footer-text {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.modal-footer-text a {
    color: var(--primary);
    font-weight: 600;
}
.modal-footer-text a:hover {
    text-decoration: underline;
}

/* ---------- Time Slots ---------- */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slots-placeholder {
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.time-slot {
    padding: 10px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--primary-light);
    background: var(--primary-bg);
}

.time-slot.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ---------- Agendamento Resumo ---------- */
.agendamento-resumo {
    background: var(--primary-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.agendamento-resumo h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.resumo-item strong {
    color: var(--text);
}

/* ---------- Meus Agendamentos ---------- */
.agendamento-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.agendamento-card:hover {
    box-shadow: var(--shadow);
}

.agendamento-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.agendamento-date-badge {
    width: 56px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.agendamento-date-badge .day {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.agendamento-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.85;
}

.agendamento-details strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.agendamento-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.agendamento-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 6px;
}

.status-confirmado {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-pendente {
    background: #FFF3E0;
    color: #EF6C00;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--border);
}

.empty-state p {
    font-size: 0.95rem;
}

/* ---------- Toast ---------- */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 420px;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 3.5s forwards;
    font-size: 0.92rem;
}

.toast i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-success i { color: #2E7D32; }
.toast-error i { color: #C62828; }
.toast-info i { color: var(--primary); }

.toast-success { border-left: 4px solid #2E7D32; }
.toast-error { border-left: 4px solid #C62828; }
.toast-info { border-left: 4px solid var(--primary); }

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-desc { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-img-wrapper { width: 280px; height: 340px; }

    .sobre-grid { grid-template-columns: 1fr; text-align: center; }
    .sobre-image { order: -1; }
    .sobre-img-placeholder { width: 280px; height: 320px; }
    .sobre-photo-wrapper { width: 280px; height: 320px; }
    .sobre-highlights { max-width: 460px; margin: 32px auto 0; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .abordagem-cards { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }

    .contato-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-links { display: none; }
    .nav-actions .btn-outline,
    .nav-actions .btn-primary { display: none; }
    .nav-toggle { display: block; }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--card);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 16px 24px;
        gap: 0;
    }

    .nav-links.show a {
        padding: 14px 16px;
        border-radius: var(--radius);
    }

    .hero-text h1 { font-size: 2.2rem; }
    .section-header h2, .sobre-text h2 { font-size: 1.8rem; }
    .section { padding: 70px 0; }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .sobre-highlights { grid-template-columns: 1fr; }
    .abordagem-cards { grid-template-columns: 1fr; }
    .abordagem-intro { padding: 32px 24px; }

    .faq-item summary {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 0 16px 16px;
        font-size: 0.92rem;
    }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .modal { padding: 28px 24px; border-radius: var(--radius-lg); }

    .floating-card { display: none; }

    .hero-stats { flex-direction: column; gap: 12px; }
    .stat-divider { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .hero-img-wrapper { width: 220px; height: 280px; }
    .toast { min-width: unset; max-width: calc(100vw - 48px); }
}
