/* 
   ----------------------------------------
   Dr. Geovana - One Page Site
   Theme: Wellness, Anti-Gravity, Modern
   Author: Antigravity Agent
   ----------------------------------------
*/

:root {
    --primary-color: #2a9d8f;
    /* Teal/Medical */
    --secondary-color: #264653;
    /* Dark Blue/Professional */
    --accent-color: #e9c46a;
    /* Soft Gold/Warmth */
    --bg-color: #ffffff;
    --light-bg: #f0f7f7;
    --text-color: #333333;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.5s;
    --sidebar-width: 0px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* Native smooth scroll for anchors */
}

/* Hide scrollbar for immersive feel but keep functionality */
body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Anti-Gravity Particles --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0.5;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    background: linear-gradient(135deg, #f8fcfc 0%, #e0f2f1 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.hero-image-container {
    position: relative;
    width: 45%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image {
    max-height: 100%;
    width: auto;
    border-radius: 20px;
    /* Soft edges */
    /* Neumorphic shadow or floaty shadow */
    box-shadow: 20px 20px 60px #d1d9d9, -20px -20px 60px #ffffff;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* --- About Section --- */
.about-section {
    padding: 150px 10%;
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    transform: translateY(0);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background: var(--primary-color);
    border-radius: 2px;
}

.bio-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.key-facts {
    list-style: none;
}

.key-facts li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--secondary-color);
}

.key-facts .icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 10%;
    background-color: var(--light-bg);
}

.center-text {
    text-align: center;
}

.center-text::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-15px) !important;
    /* Override JS for hover if needed */
    box-shadow: 0 20px 50px rgba(42, 157, 143, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background: #f0fdfc;
    border-radius: 50%;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #777;
    font-size: 1rem;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 100px 5%;
    background-color: var(--bg-color);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 4rem;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 120%;
    /* Larger for internal parallax */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Footer --- */
.footer-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 10% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.social-links a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image-container {
        width: 80%;
        height: 40vh;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* --- Footer Map & Address --- */
.footer-map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-address-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
    display: inline-block;
}

.footer-address-link:hover {
    color: var(--accent-color);
}