/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #333333;
}

/* Hero section styles */
.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg-verde.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    position: relative;
}

/* Navigation styles */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2a6d58;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }

    .nav-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: white;
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: white;
    }
}

/* Button styles */
.cta-button, .primary-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: #4fb3a0;
    color: #ffffff;
}

.cta-button:hover, .primary-button:hover {
    background-color: #2a6d58;
    transform: translateY(-2px);
}

/* Hero content styles */
.hero-content {
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(70vh - 4rem);
}

.hero-text {
    max-width: 800px;
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
}

.primary-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    min-width: 250px;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* About section */
.about-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #1b4d3e;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.about-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3c8f76;
    font-weight: bold;
}

.about-cta-button {
    background-color: #4fb3a0;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.about-cta-button:hover {
    background-color: #2a6d58;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 179, 160, 0.2);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-features li {
        text-align: left;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

/* Specialties section */
.specialties-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.specialties-container {
    max-width: 1200px;
    margin: 0 auto;
}

.specialties-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1b4d3e;
    margin-bottom: 48px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.specialty-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.specialty-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.specialty-card h3 {
    font-size: 1.5rem;
    color: #1b4d3e;
    margin: 20px 20px 10px;
}

.specialty-card p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    padding: 0 20px 20px;
}

.services-cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Team section */
.team-section {
    padding: 80px 20px;
    background-color: #1b4d3e;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 20px 0;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5rem;
    color: #1b4d3e;
    margin: 20px 20px 5px;
}

.team-card .specialty {
    color: #3c8f76;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.team-card .description {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    padding: 0 20px 20px;
}

.team-cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Partnerships Section */
.partnerships-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.partnerships-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partnerships-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b4d3e;
    margin-bottom: 1rem;
}

.partnerships-intro {
    font-size: 1.1rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.partnership-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    width: 200px;
    height: 100px;
    margin: 0 auto;
}

.partnership-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partnership-logo:hover {
    transform: scale(1.05);
}

.partnership-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partnerships-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .partnerships-section {
        padding: 40px 15px;
    }
}

/* Location section */
.location-section {
    padding: 80px 20px 0 20px;
    background-color: #f5f5f5;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1b4d3e;
    margin-bottom: 24px;
}

.location-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.location-info {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.location-info p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333333;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.appointment-container h2 {
    font-size: 2.5rem;
    color: #1b4d3e;
    margin-bottom: 1rem;
}

.appointment-intro {
    font-size: 1.1rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.appointment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.appointment-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.appointment-icon {
    font-size: 2.5rem;
    color: #3c8f76;
    margin-bottom: 1rem;
}

.appointment-card h3 {
    font-size: 1.3rem;
    color: #1b4d3e;
    margin-bottom: 1rem;
}

.appointment-card p {
    color: #333333;
    line-height: 1.6;
}

.appointment-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .appointment-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.appointment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.appointment-button.whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.appointment-button.phone {
    background-color: #2a6d58;
    color: #ffffff;
}

.appointment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.appointment-button.whatsapp:hover {
    background-color: #128C7E;
}

.appointment-button.phone:hover {
    background-color: #1b4d3e;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Footer Styles */
.footer {
    background-color: #1b4d3e;
    color: #ffffff;
    padding: 4rem 0 0 0;
    margin-top: 0;
}

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #3c8f76;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #ffffff;
}

.footer-section ul li i {
    color: #3c8f76;
    font-size: 1.1rem;
    width: 20px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: #3c8f76;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Services CTA Button */
.services-cta-container .appointment-button.whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.services-cta-container .appointment-button.whatsapp:hover {
    background-color: #128C7E;
}

/* Team CTA Button */
.team-cta-container .appointment-button.whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.team-cta-container .appointment-button.whatsapp:hover {
    background-color: #128C7E;
}

/* Appointment Section WhatsApp Button */
.appointment-cta .appointment-button.whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.appointment-cta .appointment-button.whatsapp:hover {
    background-color: #128C7E;
} 