@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/*--------------------------------------------------------------
# VARIABLES & DESIGN SYSTEM
--------------------------------------------------------------*/
:root {
    --primary: #1e4d58; /* Deep Medical Teal */
    --primary-light: #2d6c7b;
    --primary-dark: #123037;
    --primary-rgb: 30, 77, 88;
    
    --secondary: #c5a059; /* Elegant Gold */
    --secondary-light: #d8be8a;
    --secondary-dark: #9a7837;
    --secondary-rgb: 197, 160, 89;
    
    --bg-light: #f5f8f7; /* Soft Sage/Grey background */
    --bg-dark: #123037;
    --white: #ffffff;
    
    --text-dark: #2d3748; /* Slate Dark */
    --text-light: #f7fafc;
    --text-muted: #718096;
    
    --font-family-sans: 'Montserrat', sans-serif;
    --font-family-serif: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(30, 77, 88, 0.05);
    --shadow-lg: 0 20px 40px rgba(30, 77, 88, 0.08);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
}

/*--------------------------------------------------------------
# RESET & BASE STYLES
--------------------------------------------------------------*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-serif);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

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

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Container */
.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.2);
}

.btn-primary i {
    margin-left: 8px;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--secondary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background-color: var(--secondary);
}

.section-header .subtitle::before {
    left: 0;
}

.section-header .subtitle::after {
    right: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    position: relative;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# NAVIGATION BAR
--------------------------------------------------------------*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

.navbar.nav-sticky {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

.navbar-brand {
    font-family: var(--font-family-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.navbar-brand span.title {
    font-size: 1.3rem;
}

.navbar-brand span.subtitle {
    font-family: var(--font-family-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar.nav-sticky .navbar-brand {
    color: var(--primary-dark);
}

.navbar.nav-sticky .navbar-brand span.subtitle {
    color: var(--secondary-dark);
}

.navbar-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

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

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--secondary-light);
}

.navbar.nav-sticky .navbar-nav a {
    color: var(--text-dark);
}

.navbar.nav-sticky .navbar-nav a:hover,
.navbar.nav-sticky .navbar-nav a.active {
    color: var(--primary);
}

.navbar.nav-sticky .navbar-nav a:hover::after,
.navbar.nav-sticky .navbar-nav a.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--white);
    z-index: 1001;
    transition: var(--transition);
}

.navbar.nav-sticky .mobile-nav-toggle {
    color: var(--primary);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .navbar-nav.mobile-active {
        right: 0;
    }
    
    .navbar-nav a {
        color: var(--white);
        font-size: 1.1rem;
    }
    
    .navbar.nav-sticky .navbar-nav a {
        color: var(--white);
    }
}

/*--------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--secondary-light);
    border: 1px solid rgba(197, 160, 89, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .typed-container {
    height: 35px;
    margin-bottom: 25px;
}

.hero-content h2 {
    font-family: var(--font-family-sans);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--secondary-light);
    border-right: 2px solid var(--secondary);
    display: inline-block;
    padding-right: 5px;
    white-space: nowrap;
    animation: blink 0.7s step-end infinite;
}

.hero-content p.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

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

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white) !important;
}

.hero-buttons .btn-outline:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary) !important;
}

.hero-image-wrapper {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 50% 10% 50% 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    overflow: hidden;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.03);
    border-color: rgba(197, 160, 89, 0.3);
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary) }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero .row {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 320px;
        margin-top: 20px;
    }
}

/*--------------------------------------------------------------
# SECTION: WELCOME & INTRO
--------------------------------------------------------------*/
.welcome {
    padding: 100px 0;
    background-color: var(--white);
}

.welcome-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.welcome-text {
    flex: 1 1 500px;
}

.welcome-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.welcome-text p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.welcome-cards {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.welcome-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

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

.welcome-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(30, 77, 88, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.welcome-card:hover .icon-box {
    background-color: var(--secondary);
    color: var(--white);
}

.welcome-card h3 {
    font-family: var(--font-family-sans);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.welcome-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/*--------------------------------------------------------------
# SECTION: ABOUT (SOBRE MIM)
--------------------------------------------------------------*/
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-decor {
    position: absolute;
    width: 90%;
    height: 105%;
    border: 3px solid var(--secondary);
    border-radius: 40px 0 40px 0;
    bottom: -15px;
    left: 15px;
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.about-content {
    flex: 1 1 500px;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p.highlight {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-details {
    margin-top: 35px;
    border-top: 1px solid rgba(30, 77, 88, 0.1);
    padding-top: 30px;
}

.about-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-detail-item i {
    font-size: 1.2rem;
    color: var(--secondary-dark);
    margin-top: 5px;
}

.about-detail-item h4 {
    font-family: var(--font-family-sans);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-detail-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-image-decor {
        display: none;
    }
    .about-img {
        max-width: 320px;
    }
}

/*--------------------------------------------------------------
# SECTION: SPECIALTIES (ESPECIALIDADES)
--------------------------------------------------------------*/
.specialties {
    padding: 100px 0;
    background-color: var(--white);
}

/* Tabs System */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--bg-light);
    border: 1px solid rgba(30, 77, 88, 0.1);
    color: var(--primary-dark);
    font-family: var(--font-family-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background-color: rgba(30, 77, 88, 0.05);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(30, 77, 88, 0.2);
}

.tabs-content {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.specialty-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.specialty-info {
    flex: 1 1 500px;
}

.specialty-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.specialty-info p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.specialty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.specialty-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.specialty-feature i {
    color: var(--secondary-dark);
    font-size: 1.1rem;
}

.specialty-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.specialty-icon-decoration {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    font-size: 12rem;
    color: rgba(30, 77, 88, 0.04);
}

@media (max-width: 768px) {
    .tabs-content {
        padding: 30px 20px;
    }
    .specialty-info h3 {
        font-size: 1.8rem;
    }
    .specialty-icon-decoration {
        display: none;
    }
}

/*--------------------------------------------------------------
# SECTION: WHY & WHEN (POR QUE E QUANDO PROCURAR)
--------------------------------------------------------------*/
.info-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border-bottom: 5px solid var(--primary-light);
    height: 100%;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.info-list li i {
    color: var(--secondary-dark);
    font-size: 1.1rem;
    margin-top: 4px;
}

.info-list.checkmarks li i {
    color: #27ae60;
}

/*--------------------------------------------------------------
# SECTION: DIFFERENTIALS & MISSION (DIFERENCIAIS)
--------------------------------------------------------------*/
.differentials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.differentials-intro {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.diff-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(30, 77, 88, 0.02);
    transition: var(--transition);
    z-index: 0;
}

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

.diff-card:hover::before {
    width: 100%;
}

.diff-card * {
    position: relative;
    z-index: 1;
}

.diff-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.diff-card h4 {
    font-family: var(--font-family-sans);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    position: relative;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family-serif);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-family: var(--font-family-serif);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--white);
}

.quote-author {
    font-family: var(--font-family-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-light);
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.4rem;
    }
}

/*--------------------------------------------------------------
# SECTION: LOCATION & COVERAGE (LOCALIZAÇÃO)
--------------------------------------------------------------*/
.location {
    padding: 100px 0;
    background-color: var(--white);
}

.location-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.map-wrapper {
    flex: 1 1 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-info p.lead-loc {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.loc-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.loc-item i {
    font-size: 1.2rem;
    color: var(--secondary-dark);
    margin-top: 5px;
}

.loc-item-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.loc-item-text strong {
    font-family: var(--font-family-sans);
    color: var(--primary-dark);
}

/*--------------------------------------------------------------
# FOOTER & CONTACT INFO
--------------------------------------------------------------*/
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--secondary);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.footer-logo p.rqe {
    margin-top: 15px;
    font-weight: 500;
    color: var(--secondary-light);
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h5 {
    color: var(--secondary-light);
    font-family: var(--font-family-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

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

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

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-contact-info {
    flex: 1 1 300px;
}

.footer-contact-info h5 {
    color: var(--secondary-light);
    font-family: var(--font-family-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/*--------------------------------------------------------------
# FLOATING WHATSAPP BUTTON & BACK TO TOP
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

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

.back-to-top {
    position: fixed;
    width: 44px;
    height: 44px;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    color: var(--white);
}

/*--------------------------------------------------------------
# ANIMATION & REVEAL CLASSES
--------------------------------------------------------------*/
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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