/* ===========================
   GESTÃO ONSAÚDE - Custom CSS
   =========================== */

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #99f6e4;
    --primary-bg: #f0fdfa;
    --secondary: #1e3a5f;
    --secondary-dark: #0f2744;
    --accent: #f59e0b;
    --accent-light: #fef3c7;
    --success: #10b981;
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ===========================
   BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   NAVBAR
   =========================== */
#mainNavbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-img {
    height: 45px;
    width: auto;
}

.brand-text {
    font-size: 1.4rem;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.brand-text strong {
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 148, 136, 0.4);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
}

.min-vh-hero {
    min-height: 100vh;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(13, 148, 136, 0.15);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(13, 148, 136, 0.3);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hero Illustration Cards */
.hero-illustration {
    position: relative;
    height: 400px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-weight: 500;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-card:nth-child(1) { top: 20%; right: 10%; }
.hero-card:nth-child(2) { top: 45%; left: 5%; animation-delay: 2s; }
.hero-card:nth-child(3) { top: 70%; right: 15%; animation-delay: 4s; }

.hero-card i {
    font-size: 2rem;
    color: var(--primary-light);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================
   SECTIONS COMMON
   =========================== */
.section-padding {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.bg-light {
    background: var(--bg-light) !important;
}

/* ===========================
   SERVICE CARDS
   =========================== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.15);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(13, 148, 136, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ===========================
   ABOUT PREVIEW
   =========================== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(13, 148, 136, 0.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper.large .about-image-placeholder {
    height: 450px;
}

.about-image-placeholder i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.3;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 500;
    font-size: 0.93rem;
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* ===========================
   HUMANIZED CARE SECTION
   =========================== */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.humanized-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.humanized-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.humanized-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    display: block;
}

.humanized-card h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.humanized-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.humanized-image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.humanized-image-placeholder i {
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.3;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: var(--bg-light);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(13, 148, 136, 0.12) 0%, transparent 50%);
}

.page-header-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   MISSION, VISION, VALUES
   =========================== */
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.mvv-icon i {
    font-size: 1.6rem;
}

.bg-primary-soft {
    background: var(--primary-bg);
    color: var(--primary);
}

.bg-primary-soft i { color: var(--primary); }

.bg-success-soft {
    background: #ecfdf5;
    color: var(--success);
}

.bg-success-soft i { color: var(--success); }

.bg-warning-soft {
    background: var(--accent-light);
    color: var(--accent);
}

.bg-warning-soft i { color: var(--accent); }

.bg-info-soft {
    background: #eff6ff;
    color: #3b82f6;
}

.bg-info-soft i { color: #3b82f6; }

.mvv-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.mvv-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===========================
   SERVICE DETAIL
   =========================== */
.service-detail-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(13, 148, 136, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-img.accent {
    background: linear-gradient(135deg, #ecfdf5, rgba(16, 185, 129, 0.1));
}

.service-detail-img.warm {
    background: linear-gradient(135deg, var(--accent-light), rgba(245, 158, 11, 0.08));
}

.service-detail-img i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.service-detail-img.accent i { color: var(--success); }
.service-detail-img.warm i { color: var(--accent); }

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.93rem;
}

.service-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===========================
   CASE CARDS
   =========================== */
.case-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    position: relative;
    height: 200px;
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-placeholder i {
    font-size: 3.5rem;
    opacity: 0.25;
}

.case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--text-dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.case-content {
    padding: 24px;
}

.case-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.case-tags .tag {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}

.case-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.case-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.case-stat i {
    color: var(--primary);
}

/* ===========================
   LOCATION / ONDE ESTAMOS
   =========================== */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.location-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.15);
}

.location-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.location-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(13, 148, 136, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
}

.map-placeholder p {
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 500;
}

.map-dots {
    position: absolute;
    inset: 0;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
}

.dot-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.8); opacity: 0; }
}

.white-stat h3 {
    font-size: 3rem;
    font-weight: 800;
}

.white-stat p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===========================
   CONTACT CARDS
   =========================== */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================
   FORM
   =========================== */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.93rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success);
}

/* Form Section Title */
.form-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-bg);
    margin-bottom: 16px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    opacity: 0.7;
}

.footer-contact li i {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===========================
   PAGE TRANSITIONS
   =========================== */
#app-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

#app-content.fade-out {
    opacity: 0;
}

/* ===========================
   LOADING SPINNER
   =========================== */
.page-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.page-loader .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(13, 148, 136, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        margin-left: 0 !important;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 10px;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .form-card {
        padding: 24px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header-title {
        font-size: 1.8rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        margin-left: 0 !important;
    }
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
