/* Estilos Sección BodyNatur */
.bodynatur {
    /* padding: 80px 0; */ /* Heredado */
    background-color: #fff; /* Fondo específico */
}

/* Introducción (Texto + Imagen) */
.bodynatur-intro {
    display: grid; /* Usar grid */
    grid-template-columns: 1fr 1fr; /* Dos columnas */
    gap: 50px; /* Espacio */
    margin: 40px 0 60px; /* Espaciado */
    align-items: center;
}

.bodynatur-text {
    /* No necesita estilos adicionales */
}

.bodynatur-text h2, /* Título si existe */
.bodynatur-text h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.bodynatur-text p {
    color: var(--grey-color);
    line-height: 1.8; /* Mayor interlineado */
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.bodynatur-text p:last-child {
    margin-bottom: 0;
}

/* Nota destacada */
.bodynatur-text .note {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem; /* Ligeramente más pequeño */
    padding: 15px 20px;
    border-left: 3px solid var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
    display: inline-block;
}

/* Imagen */
.bodynatur-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bodynatur-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bodynatur-image:hover img {
    transform: scale(1.05);
}

/* Títulos de secciones de productos/fórmulas */
.products-title,
.formulas-title {
    font-size: 1.8rem; /* Tamaño ajustado */
    color: var(--primary-dark);
    margin: 60px 0 30px;
    position: relative;
    padding-left: 20px; /* Espacio para línea */
    font-weight: 600;
}

.products-title:before,
.formulas-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px; /* Ajustar verticalmente */
    bottom: 5px;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Grid de Productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Adaptable */
    gap: 30px;
    margin-bottom: 60px;
}

.product-tile { /* Tarjeta individual */
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image { /* Contenedor de la imagen */
    height: 350px; /* Altura ajustada */
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa; /* Fondo mientras carga */
    padding: 15px; /* Espacio para que no pegue al borde */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mostrar producto completo */
    transition: transform 0.3s ease;
}

.product-tile:hover .product-image img {
    transform: scale(1.05);
}

.product-name { /* Nombre del producto */
    padding: 20px 15px;
}

.product-name h4 {
    margin: 0;
    font-size: 1.2rem; /* Ajustado */
    color: var(--primary-color);
    font-weight: 600;
}

/* Sección CTA BodyNatur */
.cta-section.bodynatur-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-top: 80px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--grey-color);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Decoración CTA */
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-decoration .floating-shape.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.cta-decoration .floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    top: 60%;
    right: 15%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Galería de Complementos */
.complementos-gallery-section {
    margin: 80px 0 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.complementos-gallery-section .section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.complementos-gallery-section .section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.complementos-gallery-section .lead-text {
    font-size: 1.1rem;
    color: var(--grey-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.complementos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 40px;
    margin-bottom: 40px;
}

.complemento-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
}

.complemento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.complemento-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.complemento-item:hover img {
    transform: scale(1.1);
}

.complemento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    color: white;
    padding: 25px 20px 15px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.complemento-item:hover .complemento-overlay {
    transform: translateY(0);
}

.complemento-overlay h4 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.complemento-overlay p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
    padding: 0 40px;
}

.gallery-note p {
    font-size: 0.9rem;
    color: var(--grey-color);
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

/* CTA genérico (estilos en otros archivos, ej: influencers.css o crear cta.css) */
/* .cta-content { ... } */

/* Nota: Estilos responsivos irán en responsive.css */ 