@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*General Styles*/
/* styles.css */


/* General Variables */
/* General Styles */
body {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    background: #fff;
    width: 100%;
    z-index: 0;
}

body section {
    display: block;
}


body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body ul,
body li {
    margin: 0;
    padding: 0;
}

body h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

body h2 .ind {
    font-family: 'Lato', sans-serif;
    font-size: 1.875em;
    font-weight: 700;
    text-transform: uppercase;
}

body h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
}

body h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    text-transform: uppercase;
}

body p {
    line-height: 150%;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375em;
    color: #999;
}

body li {
    list-style-type: none;
}

body a {
    text-decoration: none;
}

:root {
    --primary-color: #0ead63;
    --secondary-color: #474646;
    --accent-color: #ffffff;
    --highlight-color: #474646;
    --dark-color: #474646;
    --text-color: #333;
    --light-text: #999;
    --section-padding: 4rem 2rem;
    --transition-time: 0.5s;
    --border-radius: 12px;
}

/* Reset y Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}


/* Estilos generales para las secciones */
.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 100px;
}

.section-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: var(--section-padding);
    margin-top: 2rem;
}

.reverse {
    flex-direction: row-reverse;
}

/* Estilos de imágenes */
.image-container {
    flex: 1 1 45%;
    min-width: 300px;
    position: relative;
}

.section-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
}

.text-content {
    flex: 1 1 50%;
    padding: 2rem;
}

/* Tipografía mejorada */
.section-11 h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-11 .lead {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Estadísticas */
.stats-container {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Botones mejorados */
.deliflor-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--accent-color) !important;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.deliflor-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Lista de filosofía */
.philosophy-list {
    margin: 2rem 0;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Mejoras para Sección 12 */
.section-12 {
    background: linear-gradient(to right, var(--primary-color) 40%, #fff 40%);
}

.philosophy-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.section-preheading-12 {
    color: var(--accent-color);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-heading-12 {
    color: var(--secondary-color);
    font-size: .9rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-heading-12-2 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}


.highlight-paragraph-12-2 {
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    margin-top: .8rem;
}

.highlight-paragraph-2 {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: .8rem;
}


.card-icon-wrapper {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(239, 211, 207, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

/* Estilos Sección 13 */
.section-13 .image-frame {
    position: absolute;
    width: 90%;
    height: 100vh;
    border: 3px solid var(--primary-color);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    border-radius: var(--border-radius);
}

.feature-card {
    position: relative;
    padding: 2.5rem;
    margin: 1.5rem 0;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.section-preheading {
    color: var(--secondary-color);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-heading {
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.highlight-paragraph {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    margin-top: .8rem;
}



.feature-number {
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    bottom: -20px;
    right: 10px;
    z-index: 0;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Estilos Sección 14 */
.community-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(71, 70, 70, 0.8) 0%, transparent 100%);
    color: var(--accent-color);
    z-index: 2;
}

.impact-card {
    background: var(--accent-color);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.impact-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.impact-link {
    color: var(--secondary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Animaciones */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .section-12 {
        background: var(--primary-color);
    }

    .philosophy-card {
        flex-direction: column;
        text-align: center;
    }

    .image-frame {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-inner {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .section-image {
        height: 350px;
    }

    .text-content {
        padding: 1rem;
    }

    .section-11 h1 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Animaciones básicas */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Sección 12 - Filosofía */
.section-12 {
    background: linear-gradient(to bottom, var(--primary-color) 40%, #fff 40%);
}

.artisanal-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.floral-border {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 25%;

}

.philosophy-item {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: #474646 solid 1px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy-item:hover {
    transform: translateY(-10px) rotateZ(1deg);
}

.design-types {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.design-types span {
    padding: 0.3rem 1rem;
    background: var(--primary-color);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.9em;
}

/* Sección 13 - Taller */
.vertical-gallery {
    position: relative;
    height: 600px;
}

.gallery-item {
    height: 80%;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
}

.gallery-deco {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 60%;
    height: 40%;
    background: var(--primary-color);
    border-radius: 30px;
    transform: rotate(5deg);
}

.atelier-highlights {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(to right, #ffffff 60%, var(--primary-color) 140%);
}

.highlight-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 120px;
}

/* Sección 14 - Compromiso */
.community-collage {
    position: relative;
    height: 600px;
}

.collage-main {
    height: 80%;
    background-size: cover;
    border-radius: var(--border-radius);
}

.collage-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 180px;
    text-align: center;
}

.eco-badge {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.eco-badge i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Animaciones Premium */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.gallery-deco {
    animation: float 4s ease-in-out infinite;
}

.philosophy-item:hover .deco-flower {
    animation: pulse 1.5s ease infinite;
}

/* Section 16 */
.section-16 {
    padding: var(--section-padding);
    background: var(--accent-color);
    text-align: center;
}

.section-16_title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-16_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.section-16 .card {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1rem;
    transition: transform var(--transition-time);
}

.section-16 .card:hover {
    transform: translateY(-10px);
}

.section-16 .card-img {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.section-16 .info-header {
    margin-top: 1rem;
}

.section-16 .card-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.section-16 .projects-info {
    font-size: 0.9em;
    color: var(--dark-color);
    font-weight: 600;
}

.section-16 .card-desc {
    margin-top: 0.5rem;
    font-size: 0.95em;
    color: var(--accent-color);
}


/*Eight Section*/
.eighth_section {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.eighth_section_grid {
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 1rem 3rem;
    margin: auto;
}

.eighth_section_grid_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.eighth_section_grid_div img {
    width: 10%;
    height: auto;
}

.eighth_section_grid_div p {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 0;
}

/* Contenedor principal */
.herbosalud-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección de Misión, Visión e Impacto */
.herbosalud-mision-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.herbosalud-section-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.herbosalud-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Tabs de selección */
.herbosalud-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.herbosalud-tab {
    padding: 1rem 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.herbosalud-tab i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.herbosalud-tab.active, .herbosalud-tab:hover {
    background: var(--primary-color);
    color: white;
}

.herbosalud-tab.active i, .herbosalud-tab:hover i {
    color: white;
}

/* Contenido de las pestañas */
.herbosalud-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.herbosalud-tab-content.active {
    display: block;
}

.herbosalud-mision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.herbosalud-mision-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.herbosalud-mision-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.herbosalud-mision-info h2 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.herbosalud-mision-details {
    list-style: none;
    margin-bottom: 2rem;
}

.herbosalud-mision-details li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.herbosalud-mision-details li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.herbosalud-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.herbosalud-value-item {
    background: rgba(14, 173, 99, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--primary-color);
}

.herbosalud-value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.herbosalud-value-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

.herbosalud-mision-image {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.herbosalud-mision-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 173, 99, 0.1);
    z-index: 1;
}

.herbosalud-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(71, 70, 70, 0.8);
    border-radius: 10px;
    max-width: 80%;
}

.herbosalud-image-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.herbosalud-image-content p {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .herbosalud-mision-grid {
        grid-template-columns: 1fr;
    }

    .herbosalud-mision-image {
        min-height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .herbosalud-section-title {
        font-size: 2.2rem;
    }

    .herbosalud-tabs {
        flex-direction: column;
        align-items: center;
    }

    .herbosalud-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .herbosalud-mision-info {
        padding: 2rem 1.5rem;
    }

    .herbosalud-mision-info h2 {
        font-size: 1.7rem;
    }

    .herbosalud-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .herbosalud-mision-section {
        padding: 3rem 1rem;
    }

    .herbosalud-section-title {
        font-size: 1.8rem;
    }

    .herbosalud-mision-info {
        padding: 1.5rem;
    }

    .herbosalud-mision-info h2 {
        font-size: 1.5rem;
    }
}