/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --accent-color: #F45050;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20BA5A;
    --white: #ffffff;
    --text-light: rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--white);
    color: var(--primary-color);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    background-color: var(--white);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-img img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.desktop-nav button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.desktop-nav button:hover {
    opacity: 0.6;
}

.desktop-nav .btn-contact {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.desktop-nav .btn-contact:hover {
    opacity: 0.8;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--primary-color);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-align: left;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu .btn-contact-mobile {
    background-color: var(--primary-color);
    color: var(--white);
    transition: opacity 0.3s ease;
}

.mobile-menu .btn-contact-mobile:hover {
    opacity: 0.8;
    background-color: var(--primary-color);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    padding: 4rem 0 6rem;
    background-color: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
}

.hero-badge span {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--whatsapp-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px;
    border-radius: 20%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-btn i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 32px;
    background-color: var(--white);
}

.dot:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-carousel {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 3.75rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .carousel-container {
        height: 600px;
    }
}

@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 768px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 9999px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-box:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.icon-box i {
    color: var(--white);
    font-size: 2rem;
}

.about-text-box h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-text-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.image-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.image-text p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Misión, Visión, Valores */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mvv-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    background-color: var(--accent-color);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1);
}

.mvv-icon i {
    color: var(--white);
    font-size: 2rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.video-container {
    order: 2;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-content {
    order: 1;
}

.video-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 11px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.video-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--text-light);
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .video-container {
        order: 1;
    }
    
    .video-content {
        order: 2;
    }
}

/* Brands Section */
.brands-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.brand-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.brand-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.brand-logo {
    width: 100%;
    height: 128px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo img {
    transform: scale(1.1);
}

.brand-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.brand-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.brands-certification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto;
}

.brands-certification i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.brands-certification span {
    color: var(--white);
    font-weight: 600;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .brands-grid .brand-card:nth-child(-n+4) {
        grid-column: span 2;
    }

    .brands-grid .brand-card:nth-child(5) {
        grid-column: 2 / 4;
    }

    .brands-grid .brand-card:nth-child(6) {
        grid-column: 4 / 6;
    }

    .brands-grid .brand-card:nth-child(7) {
        grid-column: 6 / 8;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.product-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-product-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-product-primary:hover {
    opacity: 0.8;
}

.btn-product-icon {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: none;
}

.captcha-group {
    display: flex;
    flex-direction: column;
}

.captcha-group label {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.captcha-question {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.125rem;
}

.captcha-container input {
    width: 96px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
}

.captcha-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.captcha-refresh {
    padding: 0.5rem;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background-color: var(--primary-color);
}

.captcha-refresh i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.captcha-refresh:hover i {
    color: var(--white);
    transform: rotate(180deg);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.8;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.schedule-box {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.schedule-box:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.schedule-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.schedule-day {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.schedule-time {
    color: rgba(255, 255, 255, 0.9);
}

.health-tips-box {
    background-color: var(--accent-color);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.health-tips-box:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.lightbulb-bg {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.2;
}

.lightbulb-bg i {
    font-size: 6rem;
}

.health-tips-content {
    position: relative;
    z-index: 10;
}

.health-tips-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.health-tips-content h3 i {
    font-size: 1.75rem;
}

.health-tips-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    min-height: 120px;
    display: flex;
    align-items: center;
}

.health-tips-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.health-tip-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.health-tip-dot.active {
    width: 32px;
    background-color: var(--white);
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.footer-header {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    background-color: var(--white);
    padding: 0.75rem;
    border-radius: 12px;
}

.footer-logo .logo-img img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.875rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 640px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-contact h3,
.footer-map h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: var(--white);
}

.contact-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
}

.social-media {
    padding: 1.25rem;
    background-color: var(--accent-color);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: var(--white);
    border-color: var(--white);
}

.social-icons a i {
    color: var(--white);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #F45050;
}

.map-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-policies {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--white);
}

.footer-policies span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--primary-color);
}

.footer-bottom .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.credits a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.credits a:hover {
    opacity: 0.7;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 9999;
    max-width: 350px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: #10b981;
}

.toast.error {
    background-color: #ef4444;
}

.social-icons a,
.social-icons a:hover,
.social-icons a:focus {
    text-decoration: none;
}
