/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #4ECCA3 0%, #45B7AF 100%);
    color: white;
    padding: 1.5rem;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0 3rem 0 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFF5F7;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.nav-scrolled {
    background-color: rgba(78, 204, 163, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 160px;
    padding: 0;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 1.5rem 0;
}

.hero h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFF5F7;
}

.hero p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-color: #FF9999;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #FF8080;
}

/* Benefits section */
.benefits {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #F8F9FA;
}

.benefits h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.highlight {
    color: #4ECCA3;
}

.subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}

.legal-info {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #4ECCA3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-badge {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #4ECCA3;
    border-radius: 50px;
    color: #4ECCA3;
}

/* Conditions section */
.conditions {
    padding: 4rem 2rem;
}

.conditions h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.condition-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-5px);
}

.condition-card i {
    font-size: 2.5rem;
    color: #4ECCA3;
    margin-bottom: 1rem;
}

.condition-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #2C3E50;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.condition-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Studies section */
.studies {
    background-color: #F8F9FA;
    padding: 4rem 2rem;
    text-align: center;
}

.studies h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.study-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.study-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.study-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #4ECCA3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.study-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team section */
.team {
    padding: 4rem 2rem;
    background-color: #fff;
}

.team h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #2C3E50;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #FAFAFA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.member-photo {
    position: relative;
}

.member-photo img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4ECCA3;
    box-shadow: 0 8px 20px rgba(78, 204, 163, 0.2);
    transition: transform 0.3s ease;
}

.member-photo img:hover {
    transform: scale(1.05);
}

.member-info h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.member-info h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #4ECCA3;
    margin-bottom: 1.5rem;
}

.member-info p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.doctor-button {
    display: inline-block;
    background-color: #4ECCA3;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.doctor-button:hover {
    background-color: #45B7AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 204, 163, 0.3);
}

/* WhatsApp button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4ECCA3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #45B7AF;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(78, 204, 163, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo {
        max-width: 130px;
    }
    
    nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        margin: 0 1rem 0 0;
    }

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

    .hero h2 {
        font-size: 1.5rem;
    }

    .benefits h2 {
        font-size: 1.5rem;
    }

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

    .study-cards {
        grid-template-columns: 1fr;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .member-photo img {
        width: 200px;
        height: 200px;
    }

    .team h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 110px;
    }

    .hero {
        padding: 1rem;
    }
    
    nav {
        padding: 0.5rem 0.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .team {
        padding: 2rem 1rem;
    }

    .team-member {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .member-photo img {
        width: 180px;
        height: 180px;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .member-info h4 {
        font-size: 1.1rem;
    }

    .member-info p {
        text-align: left;
        font-size: 0.9rem;
    }

    .team h2 {
        font-size: 1.6rem;
    }
} 