/*
Theme Name:   Generate press Hijo
Description:  Tema hijo para Post marketing boutique
Author:       Alberto
Author URL:   https://postmediamarketing.com/
Template:     generatepress 
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  generatepress-child
*/

/* Añade aquí tus estilos personalizados */
/***************************************************/
/* Header Styles */

html {
    scroll-behavior: smooth;
}
@font-face {
    font-family: 'playfairDisplay-custom';
    src: url('ruta-de-tu-fuente/playfair-display.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.custom-header {
    background-color: #5e275e;
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    height: 90px;
}

.header-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.left-column {
    justify-content: flex-start;
}

.center-column {
    justify-content: center;
}

.right-column {
    justify-content: flex-end;
}

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    color: #5e275e;
    background-color: #ffffff;
    transform: translateY(-3px);
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

.logo-mobile {
    display: none;
}

/* Menú Desktop */
.main-navigation .header-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent !important;
}
.main-navigation, .main-navigation ul ul{
    background-color: transparent !important;
}
.main-navigation .header-menu li {
    position: relative;
}

.main-navigation .header-menu a {
    color: #ffffff;
    font-family: 'playfairDisplay-custom', serif;
    text-decoration: none;
    font-size: 25px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.main-navigation .header-menu a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Botón Hamburguesa */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Menú Móvil Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 400px;
    height: 100vh;
    background-color: #5e275e;
    padding: 40px 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-menu-logo {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.mobile-menu-logo img {
    max-height: 60px;
    width: auto;
}

.mobile-navigation {
    margin-bottom: 40px;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    margin-bottom: 20px;
    animation: slideInMenu 0.5s ease forwards;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-items li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-items li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-items li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-items li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-items li:nth-child(5) { animation-delay: 0.5s; }

.mobile-menu-items a {
    color: #ffffff;
    font-family: 'playfairDisplay-custom', serif;
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mobile-menu-items a:hover {
    opacity: 0.8;
    transform: translateX(10px);
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@keyframes slideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-navigation .header-menu {
        gap: 20px;
    }
    
    .main-navigation .header-menu a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
        height: 80px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block !important;
        max-height: 50px;
    }
    
    .main-navigation .header-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .right-column {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
        height: 70px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .logo-mobile {
        max-height: 40px;
    }
    
    .mobile-menu-container {
        padding: 70px 20px;
    }
    
    .mobile-menu-items a {
        font-size: 20px;
    }
}

/* Animaciones adicionales */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-header {
    animation: fadeInDown 0.8s ease;
}

.social-icon {
    animation: fadeInDown 0.8s ease backwards;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-icon:nth-child(5) { animation-delay: 0.5s; }
.separate-containers .site-main{
    margin: 0px;
}
/* Banner Section Styles - Versión Pantalla Completa */
@font-face {
    font-family: 'playfairDisplay-custom';
    src: url('ruta-de-tu-fuente/playfair-display.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.banner-section {
    position: relative;
    width: 100%;
    height: 100vh; /* 100% del alto de la pantalla */
    min-height: 600px; /* Altura mínima por si la pantalla es muy pequeña */
    max-height: 1200px; /* Altura máxima opcional */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh; /* Misma altura que la sección */
    min-height: 600px;
    max-height: 1200px;
}

.banner-column {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 100vh; /* Altura completa */
    min-height: 600px;
    max-height: 1200px;
}

.left-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
}

.right-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
}

.banner-image-wrapper {
    width: 100%;
    height: 100%; /* Ocupa toda la altura disponible */
    max-height: inherit;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Mantiene la imagen pegada abajo */
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover; /* Cubre el espacio disponible */
    object-position: center bottom;
    display: block;
}

/* Si no hay imagen, mantenemos la altura */
.banner-image-wrapper:empty {
    display: none;
}

.left-column:not(:has(.banner-image-wrapper img)) {
    background-color: transparent;
}

.banner-content {
    max-width: 919px;
    text-align: center;
}

.banner-title {
    font-family: 'playfairDisplay-custom', serif;
    color: #000000;
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.banner-subtitle {
    font-family: 'Montserrat-custom';
    font-size: 3rem;
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5e275e;
    color: #ffffff;
    padding: 10px 28px;
    text-decoration: none;
    font-size: 23px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    gap: 10px;
    font-family: 'Montserrat-custom';
    text-transform: uppercase;
}

.banner-button:hover {
    background-color: #4a1f5e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 39, 117, 0.3);
}

.banner-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.banner-button:hover i {
    transform: translateX(5px);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 1s ease-out forwards;
}

/* Responsive Design - Todos con altura completa */
@media (max-width: 1024px) {
    .banner-section,
    .banner-container,
    .banner-column,
    .left-column,
    .right-column {
        height: 100vh; /* Mantiene 100% en tablets */
        min-height: 600px;
        max-height: 1000px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-subtitle {
        font-size: 28px;
    }
    
    .banner-image {
        max-height: 100vh;
    }
}

@media (max-width: 768px) {
    .banner-section,
    .banner-container {
        height: 100vh; /* 100% en móvil */
        min-height: 700px; /* Un poco más alto en móvil por el contenido */
    }
    
    .banner-column,
    .left-column,
    .right-column {
        height: auto; /* En móvil las columnas se ajustan */
    }
    
    .banner-container {
        flex-direction: column;
    }
    
    .left-column {
        order: 1;
        height: 45vh; /* 45% de la pantalla para la imagen */
        min-height: 300px;
        max-height: 450px;
    }
    
    .right-column {
        order: 2;
        padding: 20px;
        height: 55vh; /* 55% para el contenido */
        min-height: 350px;
    }
    
    .banner-image-wrapper {
        height: 45vh;
        min-height: 300px;
        max-height: 450px;
    }
    
    .banner-image {
        max-height: 45vh;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 24px;
    }
    
    .banner-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 100%;
    }
    
    .banner-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .banner-section,
    .banner-container {
        min-height: 650px;
                background-position-x: 15%;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-subtitle {
        font-size: 20px;
    }
    
    .banner-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .left-column {
        height: 40vh;
        min-height: 250px;
        display: none;
    }
    
    .banner-image-wrapper {
        height: 40vh;
        min-height: 250px;
    }
    
    .right-column {
        height: 60vh;
        min-height: 350px;
        padding: 15px;
        justify-content: end;
    }
}

/* Ajuste para pantallas muy grandes */
@media (min-width: 2000px) {
    .banner-section,
    .banner-container,
    .banner-column,
    .left-column,
    .right-column {
        max-height: 1200px; /* No crece más de 1200px en pantallas enormes */
    }
}

/* Estilos específicos para cuando hay imagen de fondo móvil */
@media (max-width: 768px) {
    .banner-section {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    /* Ajuste para mejorar la visibilidad del texto sobre la imagen */
    .banner-section::before {
        background: rgba(0, 0, 0, 0.2); /* Ajusta la opacidad si es necesario */
    }
}


/* Sección Cinta Styles */
@font-face {
    font-family: 'Montserrat-custom';
    src: url('ruta-de-tu-fuente/montserrat.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-custom';
    src: url('ruta-de-tu-fuente/montserrat-bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.cinta-section {
    width: 100%;
    background-color: #ead8cc;
    padding: 40px 10rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40), 0 6px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
    margin-bottom: 0;
}

.cinta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.cinta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.cinta-content {
    text-align: center;
}

.cinta-texto {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 1.95rem;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    padding: 20px 0;
    font-weight: 300;
}

.cinta-texto .text-bold {
    font-weight: 700;
    color: #000000; /* Color que combina con el header */
    position: relative;
    display: inline-block;
}

.cinta-texto .text-bold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: transparent;
   /* animation: underlineExpand 1.5s ease forwards;*/
    animation-delay: 0.5s;
}

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

/* Animación de entrada */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .cinta-texto {
        font-size: 24px;
        padding: 15px 0;
    }
    
    .cinta-section {
        padding: 35px 0;
    }
}

@media (max-width: 768px) {
    .cinta-texto {
        font-size: 20px;
        line-height: 1.4;
        padding: 15px 0;
    }
    
    .cinta-section {
        padding: 30px 0;
    }
    
    .cinta-section::before {
        animation: shine 12s infinite; /* Más lento en móvil */
    }
}

@media (max-width: 480px) {
    .cinta-texto {
        font-size: 18px;
        line-height: 1.4;
        padding: 10px 0;
    }
    
    .cinta-section {
        padding: 25px 0;
    }
    
    .cinta-container {
        padding: 0 15px;
    }
    
    .cinta-texto .text-bold::after {
        height: 1px;
    }
}

/* Efecto hover adicional */
.cinta-section:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 8px 15px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.cinta-section:hover .cinta-texto .text-bold {
    color: #4a1f4a;
    transition: color 0.3s ease;
}

/* Sección Texto + Imagen Styles */
.txtimg-section {
    width: 100%;
    padding: 80px 5rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.txtimg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.txtimg-col {
    flex: 1;
    min-width: 300px;
}

/* Columna Izquierda */
.left-col {
    display: flex;
    align-items: center;
}

.txtimg-content {
    max-width: 600px;
    padding-right: 40px;
}

.txtimg-titulo {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
}

.txtimg-titulo-imagen {
    margin-bottom: 30px;
}

.txtimg-titulo-imagen img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}

.txtimg-descripcion {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333333;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.txtimg-descripcion p {
    margin-bottom: 20px;
}

.txtimg-descripcion p:last-child {
    margin-bottom: 0;
}

.txtimg-linea {
    width: 100%;
    height: 2px;
    background-color: #ead8cc;
    margin: 30px 0;
    border-radius: 2px;
}

.txtimg-calendario {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.calendario-icono {
    font-size: 32px;
    color: #5e275e;
    transition: transform 0.3s ease;
}

.calendario-imagen {
    max-width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.calendario-texto {
    font-family: 'playfairDisplay-custom', serif;
    color: #333333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.calendario-texto:hover {
    color: #5e275e;
    border-bottom-color: #5e275e;
}

.txtimg-calendario:hover .calendario-icono,
.txtimg-calendario:hover .calendario-imagen {
    transform: rotate(10deg) scale(1.1);
}

/* Columna Derecha */
.right-col {
    display: flex;
    align-items: stretch;
}

.txtimg-imagen-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.txtimg-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.txtimg-imagen-wrapper:hover .txtimg-imagen {
    transform: scale(1.05);
}

/* Animaciones */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-left {
    animation: fadeLeft 1s ease forwards;
}

.animate-fade-right {
    animation: fadeRight 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .txtimg-section {
        padding: 60px 0;
    }
    
    .txtimg-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .txtimg-titulo {
        font-size: 42px;
    }
    
    .txtimg-descripcion {
        font-size: 17px;
    }
    
    .txtimg-content {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .txtimg-section {
        padding: 50px 0;
    }
    
    .txtimg-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .left-col {
        order: 2;
    }
    
    .right-col {
        order: 1;
        min-height: 400px;
    }
    
    .txtimg-content {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .txtimg-titulo {
        font-size: 36px;
    }
    
    .txtimg-descripcion {
        font-size: 16px;
        text-align: left;
    }
    
    .txtimg-linea {
        margin: 25px auto;
        width: 100%;
        max-width: 400px;
    }
    
    .txtimg-calendario {
        justify-content: center;
    }
    
    .calendario-texto {
        font-size: 18px;
    }
    
    .txtimg-imagen-wrapper {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .txtimg-section {
        padding: 40px 0;
    }
    
    .txtimg-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .right-col {
        min-height: 300px;
    }
    
    .txtimg-titulo {
        font-size: 30px;
    }
    
    .txtimg-descripcion {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .calendario-icono {
        font-size: 28px;
    }
    
    .calendario-imagen {
        max-width: 35px;
    }
    
    .calendario-texto {
        font-size: 16px;
    }
    
    .txtimg-imagen-wrapper {
        max-height: 400px;
    }
}

/* Animaciones al hacer scroll (opcional) */
@media (prefers-reduced-motion: no-preference) {
    .txtimg-section {
        animation: none;
    }
    
    .txtimg-col {
        opacity: 0;
        animation-fill-mode: forwards;
    }
}



/* Sección Historia Styles */
.historia-section {
    position: relative;
    width: 100%;
    min-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efecto parallax opcional */
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.historia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(94, 39, 94, 0.9) 0%, rgba(94, 39, 94, 0.7) 100%);*/
    z-index: 1;
}

.historia-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.historia-content {
    color: #ffffff;
    text-align: left;
}

.historia-titulo {
    font-family: 'playfairDisplay-custom', serif;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.historia-subtitulo {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 24px;
    color: #ead8cc;
    margin-bottom: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.historia-texto {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

.historia-texto p {
    margin-bottom: 25px;
}

.historia-texto p:last-child {
    margin-bottom: 0;
}

.historia-texto strong {
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.historia-texto strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: transparent;
    animation: underlineBold 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes underlineBold {
    to {
        width: 100%;
    }
}

.historia-boton-wrapper {
    text-align: center;
    margin-top: 20px;
}

.historia-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ead8cc;
    color: #5e275e;
    padding: 15px 35px;
    text-decoration: none;
    font-family: 'Montserrat-custom';
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.historia-boton:hover {
    background-color: #ffffff;
    color: #5e275e;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.historia-boton i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.historia-boton:hover i {
    transform: translateX(8px);
}

/* Animación de entrada */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1.2s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .historia-section {
        min-height: 700px;
        padding: 70px 0;
        background-attachment: scroll; /* Quitar parallax en tablets */
    }
    
    .historia-titulo {
        font-size: 48px;
    }
    
    .historia-subtitulo {
        font-size: 22px;
        margin-bottom: 35px;
    }
    
    .historia-texto {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .historia-section {
        min-height: 600px;
        padding: 60px 0;
    }
    
    .historia-container {
        padding: 0 20px;
    }
    
    .historia-titulo {
        font-size: 42px;
        text-align: center;
    }
    
    .historia-subtitulo {
        font-size: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .historia-texto {
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }
    
    .historia-texto p {
        margin-bottom: 20px;
    }
    
    .historia-boton {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .historia-section {
        min-height: 500px;
        padding: 50px 0;
    }
    
    .historia-container {
        padding: 0 15px;
    }
    
    .historia-titulo {
        font-size: 36px;
    }
    
    .historia-subtitulo {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .historia-texto {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .historia-boton {
        padding: 12px 30px;
        font-size: 16px;
        gap: 10px;
        width: 100%;
        max-width: 300px;
    }
    
    .historia-boton i {
        font-size: 16px;
    }
}

/* Efecto parallax solo en desktop */
@media (min-width: 1025px) {
    .historia-section {
        background-attachment: fixed;
    }
}

/* Animaciones adicionales */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.historia-boton {
    animation: pulse 2s infinite;
    animation-iteration-count: 1;
    animation-delay: 1s;
}

/* Efecto de aparición para cada párrafo */
.historia-texto p {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.historia-texto p:nth-child(1) { animation-delay: 0.2s; }
.historia-texto p:nth-child(2) { animation-delay: 0.4s; }
.historia-texto p:nth-child(3) { animation-delay: 0.6s; }
.historia-texto p:nth-child(4) { animation-delay: 0.8s; }
.historia-texto p:nth-child(5) { animation-delay: 1.0s; }
.historia-texto p:nth-child(6) { animation-delay: 1.2s; }
.historia-texto p:nth-child(7) { animation-delay: 1.4s; }


/* Sección Imagen + Texto Styles */
.imgtxt-section {
    width: 100%;
    padding: 80px 5rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.imgtxt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.imgtxt-col {
    flex: 1;
    min-width: 300px;
}

/* Columna Izquierda - Imagen */
.left-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgtxt-imagen-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.imgtxt-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.imgtxt-imagen-wrapper:hover .imgtxt-imagen {
    transform: scale(1.05);
}

/* Columna Derecha - Contenido */
.right-col {
    display: flex;
    align-items: center;
}

.imgtxt-content {
    max-width: 600px;
    padding-left: 20px;
}

.imgtxt-titulo {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
}

.imgtxt-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #ead8cc;
    animation: slideWidth 1s ease forwards;
}

@keyframes slideWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.imgtxt-descripcion {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333333;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.imgtxt-descripcion p {
    margin-bottom: 15px;
}

.imgtxt-subtitulo {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

.imgtxt-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.imgtxt-lista-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Montserrat-custom';
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    opacity: 0;
    animation: slideInItem 0.5s ease forwards;
    font-weight: 300;
}

.imgtxt-lista-item i {
    color: #5e275e;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.imgtxt-lista-item:hover i {
    transform: translateX(5px) scale(1.2);
}

.imgtxt-lista-item span {
    flex: 1;
}

/* Animaciones para items de la lista */
.imgtxt-lista-item:nth-child(1) { animation-delay: 0.1s; }
.imgtxt-lista-item:nth-child(2) { animation-delay: 0.2s; }
.imgtxt-lista-item:nth-child(3) { animation-delay: 0.3s; }
.imgtxt-lista-item:nth-child(4) { animation-delay: 0.4s; }
.imgtxt-lista-item:nth-child(5) { animation-delay: 0.5s; }
.imgtxt-lista-item:nth-child(6) { animation-delay: 0.6s; }
.imgtxt-lista-item:nth-child(7) { animation-delay: 0.7s; }
.imgtxt-lista-item:nth-child(8) { animation-delay: 0.8s; }
.imgtxt-lista-item:nth-child(9) { animation-delay: 0.9s; }
.imgtxt-lista-item:nth-child(10) { animation-delay: 1.0s; }
.imgtxt-lista-item:nth-child(11) { animation-delay: 1.1s; }
.imgtxt-lista-item:nth-child(12) { animation-delay: 1.2s; }
.imgtxt-lista-item:nth-child(13) { animation-delay: 1.3s; }
.imgtxt-lista-item:nth-child(14) { animation-delay: 1.4s; }
.imgtxt-lista-item:nth-child(15) { animation-delay: 1.5s; }
.imgtxt-lista-item:nth-child(16) { animation-delay: 1.6s; }
.imgtxt-lista-item:nth-child(17) { animation-delay: 1.7s; }
.imgtxt-lista-item:nth-child(18) { animation-delay: 1.8s; }
.imgtxt-lista-item:nth-child(19) { animation-delay: 1.9s; }
.imgtxt-lista-item:nth-child(20) { animation-delay: 2.0s; }

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animaciones generales */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-left {
    animation: fadeLeft 1s ease forwards;
}

.animate-fade-right {
    animation: fadeRight 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .imgtxt-section {
        padding: 60px 0;
    }
    
    .imgtxt-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .imgtxt-titulo {
        font-size: 38px;
    }
    
    .imgtxt-descripcion {
        font-size: 17px;
    }
    
    .imgtxt-subtitulo {
        font-size: 20px;
    }
    
    .imgtxt-lista-item {
        font-size: 17px;
    }
    
    .imgtxt-imagen-wrapper {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .imgtxt-section {
        padding: 50px 0;
    }
    
    .imgtxt-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .left-col {
        order: 1;
    }
    
    .right-col {
        order: 2;
    }
    
    .imgtxt-content {
        padding-left: 0;
        max-width: 100%;
    }
    
    .imgtxt-titulo {
        font-size: 34px;
        text-align: center;
    }
    
    .imgtxt-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .imgtxt-descripcion {
        font-size: 16px;
        text-align: center;
    }
    
    .imgtxt-subtitulo {
        font-size: 20px;
        text-align: center;
    }
    
    .imgtxt-lista {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .imgtxt-lista-item {
        font-size: 16px;
        text-align: left;
    }
    
    .imgtxt-imagen-wrapper {
        min-height: 400px;
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .imgtxt-section {
        padding: 40px 0;
    }
    
    .imgtxt-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .imgtxt-titulo {
        font-size: 28px;
    }
    
    .imgtxt-descripcion {
        font-size: 15px;
    }
    
    .imgtxt-subtitulo {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .imgtxt-lista-item {
        font-size: 15px;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .imgtxt-lista-item i {
        font-size: 18px;
    }
    
    .imgtxt-imagen-wrapper {
        min-height: 300px;
        max-height: 400px;
    }
}

/* Efecto hover en items de la lista */
.imgtxt-lista-item {
    transition: transform 0.3s ease;
}

.imgtxt-lista-item:hover {
    transform: translateX(5px);
}

/* Animación de entrada para la sección */
@media (prefers-reduced-motion: no-preference) {
    .imgtxt-col {
        opacity: 0;
        animation-fill-mode: forwards;
    }
}


/* Sección Coaching Styles */
.coaching-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.coaching-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Logo/Imagen inferior izquierda */
.coaching-logo-left {
    position: absolute;
    left: 0%;
    bottom: 0;
    z-index: 3;
    max-width: 250px;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coaching-logo-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.coaching-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.coaching-content {
    text-align: center;
   /* background-color: rgba(255, 255, 255, 0.95);*/
    padding: 50px 60px;
    border-radius: 20px;
   /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
    backdrop-filter: blur(5px);
}

.coaching-titulo {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.coaching-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    /*background-color: #5e275e;*/
    animation: centerExpand 1s ease forwards;
}

@keyframes centerExpand {
    to {
        width: 100px;
    }
}

.coaching-subtitulo {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coaching-texto {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.coaching-texto p {
    margin-bottom: 20px;
}

.coaching-texto p:last-child {
    margin-bottom: 0;
}

.coaching-calendario-wrapper {
    margin-top: 60px;
}

.coaching-calendario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 18px 40px;
    border-radius: 0px;
    text-decoration: none;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coaching-calendario:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(94, 39, 94, 0.2);
    border-color: #5e275e;
}

.coaching-calendario-icono {
    font-size: 24px;
    color: #5e275e;
    transition: transform 0.3s ease;
}

.coaching-calendario-imagen {
    max-width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.coaching-calendario:hover .coaching-calendario-icono,
.coaching-calendario:hover .coaching-calendario-imagen {
    transform: rotate(10deg) scale(1.1);
}

.coaching-calendario-texto {
    font-family: 'playfairDisplay-custom', serif;
    color: #222423;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.coaching-calendario:hover .coaching-calendario-texto {
    color: #5e275e;
}

/* Animaciones */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-left {
    animation: fadeLeft 1s ease forwards;
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .coaching-section {
        min-height: 600px;
        padding: 60px 0;
    }
    
    .coaching-content {
        padding: 40px 50px;
    }
    
    .coaching-titulo {
        font-size: 42px;
    }
    
    .coaching-subtitulo {
        font-size: 24px;
    }
    
    .coaching-texto {
        font-size: 17px;
    }
    
    .coaching-logo-left {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .coaching-section {
        min-height: 500px;
        padding: 50px 0;
    }
    
    .coaching-container {
        padding: 0 20px;
    }
    
    .coaching-content {
        padding: 35px 30px;
    }
    
    .coaching-titulo {
        font-size: 36px;
    }
    
    .coaching-subtitulo {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .coaching-texto {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .coaching-calendario {
        padding: 15px 30px;
        gap: 12px;
        width: 100%;
        max-width: 400px;
    }
    
    .coaching-calendario-texto {
        font-size: 18px;
    }
    
    .coaching-logo-left {
        max-width: 120px;
        left: 3%;
    }
}

@media (max-width: 480px) {
    .coaching-section {
        min-height: 400px;
        padding: 50px 0;
    }
    
    .coaching-container {
        padding: 0 15px;
    }
    
    .coaching-content {
        padding: 30px 20px;
    }
    
    .coaching-titulo {
        font-size: 30px;
    }
    
    .coaching-subtitulo {
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .coaching-texto {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .coaching-calendario {
        padding: 12px 20px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .coaching-calendario-icono {
        font-size: 20px;
    }
    
    .coaching-calendario-texto {
        font-size: 16px;
    }
    
    .coaching-logo-left {
        max-width: 100px;
        left: 2%;
    }
    
    .coaching-logo-img {
        max-height: 60px;
    }
}

/* Animación para los párrafos */
.coaching-texto p {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.coaching-texto p:nth-child(1) { animation-delay: 0.2s; }
.coaching-texto p:nth-child(2) { animation-delay: 0.4s; }
.coaching-texto p:nth-child(3) { animation-delay: 0.6s; }

/* Efecto de brillo en hover del calendario */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 20px rgba(94, 39, 94, 0.1);
    }
    50% {
        box-shadow: 0 15px 30px rgba(94, 39, 94, 0.3);
    }
    100% {
        box-shadow: 0 10px 20px rgba(94, 39, 94, 0.1);
    }
}

.coaching-calendario:hover {
    animation: pulse 2s infinite;
}

/* Ajustes para cuando hay imagen de fondo */
.coaching-section[style*="background-image"] .coaching-content {
    background-color: rgba(255, 255, 255, 0.95);
}



/* Sección Mis Libros Styles */
.mislibros-section {
    width: 100%;
    padding: 80px 5rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.mislibros-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.mislibros-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.mislibros-col {
    flex: 1;
    min-width: 300px;
}

/* Columna Izquierda - Contenido */
.left-col {
    display: flex;
    align-items: center;
}

.mislibros-content {
    max-width: 600px;
    padding-right: 40px;
}

.mislibros-titulo {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
}

.mislibros-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #ead8cc;
    animation: slideWidth 1s ease forwards;
}

@keyframes slideWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.mislibros-subtitulo-bold {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.mislibros-subtitulo-light {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333333;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.mislibros-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mislibros-lista-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    opacity: 0;
    animation: slideInItem 0.5s ease forwards;
}

.mislibros-lista-item i {
    color: #5e275e;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mislibros-lista-item:hover i {
    transform: translateX(5px) scale(1.2);
}

.mislibros-lista-item span {
    flex: 1;
}

/* Columna Derecha - Imagen */
.right-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mislibros-imagen-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mislibros-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mislibros-imagen-wrapper:hover .mislibros-imagen {
    transform: scale(1.05);
}

/* Línea divisoria */
.mislibros-linea {
    width: 100%;
    height: 2px;
    background-color: #ead8cc;
    margin: 40px 0;
    border-radius: 2px;
}

/* Fila inferior */
.mislibros-bottom-row {
    margin-top: 20px;
}

.mislibros-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.mislibros-texto-inferior {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 26px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.mislibros-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5e275e;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
    gap: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(94, 39, 94, 0.3);
}

.mislibros-boton:hover {
    background-color: #4a1f4a;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(94, 39, 94, 0.4);
}

.mislibros-boton i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mislibros-boton:hover i {
    transform: translateX(8px);
}

/* Animaciones para items de la lista */
.mislibros-lista-item:nth-child(1) { animation-delay: 0.1s; }
.mislibros-lista-item:nth-child(2) { animation-delay: 0.2s; }
.mislibros-lista-item:nth-child(3) { animation-delay: 0.3s; }
.mislibros-lista-item:nth-child(4) { animation-delay: 0.4s; }
.mislibros-lista-item:nth-child(5) { animation-delay: 0.5s; }
.mislibros-lista-item:nth-child(6) { animation-delay: 0.6s; }
.mislibros-lista-item:nth-child(7) { animation-delay: 0.7s; }
.mislibros-lista-item:nth-child(8) { animation-delay: 0.8s; }
.mislibros-lista-item:nth-child(9) { animation-delay: 0.9s; }
.mislibros-lista-item:nth-child(10) { animation-delay: 1.0s; }

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animaciones generales */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-left {
    animation: fadeLeft 1s ease forwards;
}

.animate-fade-right {
    animation: fadeRight 1s ease forwards;
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .mislibros-section {
        padding: 60px 0;
    }
    
    .mislibros-container {
        padding: 0 20px;
    }
    
    .mislibros-row {
        gap: 40px;
    }
    
    .mislibros-titulo {
        font-size: 42px;
    }
    
    .mislibros-subtitulo-bold {
        font-size: 22px;
    }
    
    .mislibros-subtitulo-light {
        font-size: 18px;
    }
    
    .mislibros-lista-item {
        font-size: 17px;
    }
    
    .mislibros-imagen-wrapper {
        min-height: 450px;
    }
    
    .mislibros-texto-inferior {
        font-size: 20px;
    }
    
    .mislibros-boton {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mislibros-section {
        padding: 50px 0;
    }
    
    .mislibros-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .left-col {
        order: 2;
    }
    
    .right-col {
        order: 1;
    }
    
    .mislibros-content {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .mislibros-titulo {
        font-size: 38px;
    }
    
    .mislibros-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mislibros-subtitulo-bold,
    .mislibros-subtitulo-light {
        text-align: center;
    }
    
    .mislibros-lista {
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }
    
    .mislibros-imagen-wrapper {
        min-height: 400px;
        max-height: 500px;
    }
    
    .mislibros-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .mislibros-texto-inferior {
        text-align: center;
        font-size: 20px;
    }
    
    .mislibros-boton {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .mislibros-section {
        padding: 40px 0;
    }
    
    .mislibros-container {
        padding: 0 15px;
    }
    
    .mislibros-titulo {
        font-size: 32px;
    }
    
    .mislibros-subtitulo-bold {
        font-size: 20px;
    }
    
    .mislibros-subtitulo-light {
        font-size: 17px;
    }
    
    .mislibros-lista-item {
        font-size: 16px;
        gap: 12px;
    }
    
    .mislibros-lista-item i {
        font-size: 18px;
    }
    
    .mislibros-imagen-wrapper {
        min-height: 300px;
        max-height: 400px;
    }
    
    .mislibros-linea {
        margin: 30px 0;
    }
    
    .mislibros-texto-inferior {
        font-size: 18px;
    }
    
    .mislibros-boton {
        padding: 14px 25px;
        font-size: 15px;
        gap: 10px;
    }
}

/* Hover effects adicionales */
.mislibros-lista-item {
    transition: transform 0.3s ease;
}

.mislibros-lista-item:hover {
    transform: translateX(5px);
}

/* Animación de pulso para el botón */
@keyframes botonPulse {
    0% {
        box-shadow: 0 10px 20px rgba(94, 39, 94, 0.3);
    }
    50% {
        box-shadow: 0 15px 30px rgba(94, 39, 94, 0.5);
    }
    100% {
        box-shadow: 0 10px 20px rgba(94, 39, 94, 0.3);
    }
}

.mislibros-boton:hover {
    animation: botonPulse 2s infinite;
}



/* Estilos adicionales para Mis Libros */
.mislibros-lista-wrapper {
    margin-bottom: 30px;
}

.mislibros-lista-wrapper:last-child {
    margin-bottom: 0;
}

.mislibros-lista-titulo {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333333;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 600;
}

.mislibros-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mislibros-lista-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    opacity: 0;
    animation: slideInItem 0.5s ease forwards;
        font-weight: 500;
}

.mislibros-lista-item i {
    color: #5e275e;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mislibros-lista-item:hover i {
    transform: translateX(5px) scale(1.2);
}

.mislibros-lista-item span {
    flex: 1;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .mislibros-lista-titulo {
        font-size: 18px;
        text-align: center;
    }
    
    .mislibros-lista-item {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .mislibros-lista-titulo {
        font-size: 17px;
    }
    
    .mislibros-lista-item {
        font-size: 16px;
        gap: 12px;
    }
}

/* Animaciones para items de ambas listas */
.mislibros-lista-wrapper .mislibros-lista-item {
    animation: slideInItem 0.5s ease forwards;
}

/* Delays para primera lista */
.mislibros-lista-wrapper:first-child .mislibros-lista-item:nth-child(1) { animation-delay: 0.1s; }
.mislibros-lista-wrapper:first-child .mislibros-lista-item:nth-child(2) { animation-delay: 0.2s; }
.mislibros-lista-wrapper:first-child .mislibros-lista-item:nth-child(3) { animation-delay: 0.3s; }
.mislibros-lista-wrapper:first-child .mislibros-lista-item:nth-child(4) { animation-delay: 0.4s; }
.mislibros-lista-wrapper:first-child .mislibros-lista-item:nth-child(5) { animation-delay: 0.5s; }

/* Delays para segunda lista */
.mislibros-lista-wrapper:last-child .mislibros-lista-item:nth-child(1) { animation-delay: 0.6s; }
.mislibros-lista-wrapper:last-child .mislibros-lista-item:nth-child(2) { animation-delay: 0.7s; }
.mislibros-lista-wrapper:last-child .mislibros-lista-item:nth-child(3) { animation-delay: 0.8s; }
.mislibros-lista-wrapper:last-child .mislibros-lista-item:nth-child(4) { animation-delay: 0.9s; }
.mislibros-lista-wrapper:last-child .mislibros-lista-item:nth-child(5) { animation-delay: 1.0s; }



/* Sección Cursos Styles */
.cursos-section {
    position: relative;
    width: 100%;
    padding: 80px 5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden; 
        margin-bottom: 0;
}

.cursos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);*/
    z-index: 1;
}

.cursos-container {
    position: relative;
    z-index: 2;
    max-width: 1260px; /* cambiar a 1400px cuando sean 3 columnas*/
    margin: 0 auto;
    padding: 0 30px;
}

/* Grid de cursos */
.cursos-grid {
    display: grid;
    gap: 30px;
    justify-content: center;
}

.cursos-grid-1 {
    grid-template-columns: minmax(300px, 500px);
}

.cursos-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cursos-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.cursos-card {
    background-color: #ffffff;
    border-radius: 0px;
    padding: 70px 90px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.cursos-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(94, 39, 94, 0.3);
}

.cursos-card-programa {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #5e275e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    background-color: #ead8cc;
    font-weight: 300;
    width: 50%;
    text-align: center;
    padding: 5px 0px;
}

.cursos-card-titulo {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
}

.cursos-card-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #ead8cc;
}

.cursos-card-subtitulo {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.cursos-card-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.cursos-card-lista-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.5;
    font-weight: 500;
}

.cursos-card-lista-item i {
    color: #5e275e;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cursos-card-lista-item:hover i {
    transform: translateX(5px) scale(1.2);
}

.cursos-card-precio-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cursos-card-precio {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.cursos-card-moneda {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}

.cursos-card-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5e275e;
    color: #ffffff;
    padding: 15px 0px;
    text-decoration: none;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
    gap: 10px;
    width: 70%;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.cursos-card-boton:hover {
    background-color: #4a1f4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 39, 94, 0.3);
}

.cursos-card-boton i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cursos-card-boton:hover i {
    transform: translateX(8px);
}

/* Animaciones */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .cursos-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cursos-card-titulo {
        font-size: 28px;
    }
    
    .cursos-card-precio {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .cursos-section {
        padding: 60px 0;
    }
    
    .cursos-container {
        padding: 0 20px;
    }
    
    .cursos-grid-2,
    .cursos-grid-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cursos-card {
        padding: 35px 25px;
    }
    
    .cursos-card-titulo {
        font-size: 28px;
    }
    
    .cursos-card-subtitulo {
        font-size: 15px;
        min-height: auto;
    }
    
    .cursos-card-lista-item {
        font-size: 14px;
    }
    
    .cursos-card-precio {
        font-size: 32px;
    }
    
    .cursos-card-boton {
        padding: 14px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cursos-section {
        padding: 50px 0;
    }
    
    .cursos-container {
        padding: 0 15px;
    }
    
    .cursos-card {
        padding: 30px 20px;
    }
    
    .cursos-card-titulo {
        font-size: 26px;
    }
    
    .cursos-card-titulo::after {
        width: 50px;
    }
    
    .cursos-card-precio {
        font-size: 28px;
    }
    
    .cursos-card-moneda {
        font-size: 16px;
    }
    
    .cursos-card-boton {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    .cursos-card-programa {
            font-size: 1rem;
                padding: 1px 0px;
                    width: 45%;
    }
}

/* Ajustes para diferentes cantidades de cards */
.cursos-grid-1 .cursos-card {
    text-align: center;
}

.cursos-grid-1 .cursos-card-titulo::after {
    left: 50%;
    transform: translateX(-50%);
}

.cursos-grid-1 .cursos-card-lista-item {
    justify-content: center;
}

/* Animaciones para items de lista */
.cursos-card-lista-item {
    opacity: 0;
    animation: slideInItem 0.5s ease forwards;
}

.cursos-card .cursos-card-lista-item:nth-child(1) { animation-delay: 0.1s; }
.cursos-card .cursos-card-lista-item:nth-child(2) { animation-delay: 0.15s; }
.cursos-card .cursos-card-lista-item:nth-child(3) { animation-delay: 0.2s; }
.cursos-card .cursos-card-lista-item:nth-child(4) { animation-delay: 0.25s; }
.cursos-card .cursos-card-lista-item:nth-child(5) { animation-delay: 0.3s; }
.cursos-card .cursos-card-lista-item:nth-child(6) { animation-delay: 0.35s; }
.cursos-card .cursos-card-lista-item:nth-child(7) { animation-delay: 0.4s; }
.cursos-card .cursos-card-lista-item:nth-child(8) { animation-delay: 0.45s; }
.cursos-card .cursos-card-lista-item:nth-child(9) { animation-delay: 0.5s; }
.cursos-card .cursos-card-lista-item:nth-child(10) { animation-delay: 0.55s; }
.cursos-card .cursos-card-lista-item:nth-child(11) { animation-delay: 0.6s; }
.cursos-card .cursos-card-lista-item:nth-child(12) { animation-delay: 0.65s; }
.cursos-card .cursos-card-lista-item:nth-child(13) { animation-delay: 0.7s; }
.cursos-card .cursos-card-lista-item:nth-child(14) { animation-delay: 0.75s; }
.cursos-card .cursos-card-lista-item:nth-child(15) { animation-delay: 0.8s; }

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Sección Contacto Styles */
.contacto-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ead8cc;
    position: relative;
    overflow: hidden;
}

.contacto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contacto-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Header */
.contacto-header {
    text-align: center;
    margin-bottom: 50px;
}

.contacto-titulo {
    font-family: 'playfairDisplay-custom', serif;
    color: #5e275e;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.contacto-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #5e275e;
    animation: centerExpand 1s ease forwards;
}

@keyframes centerExpand {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.contacto-subtitulo {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Mensajes de éxito/error */
.contacto-mensaje-exito,
.contacto-mensaje-error {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contacto-mensaje-exito i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}

.contacto-mensaje-exito p {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333333;
    margin: 0;
}

.contacto-mensaje-error i {
    font-size: 48px;
    color: #dc3545;
    margin-bottom: 15px;
}

.contacto-mensaje-error ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 16px;
    color: #dc3545;
}

.contacto-mensaje-error li {
    margin-bottom: 5px;
}

/* Formulario */
.contacto-form {
    background-color: #ffffff;
    border-radius: 0px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contacto-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.contacto-form-group-full {
    grid-column: 1 / -1;
}

.contacto-label {
    display: block;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.contacto-input,
.contacto-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.contacto-input:focus,
.contacto-textarea:focus {
    outline: none;
    border-color: #5e275e;
    box-shadow: 0 0 0 3px rgba(94, 39, 94, 0.1);
}

.contacto-input:hover,
.contacto-textarea:hover {
    border-color: #5e275e;
}

.contacto-textarea {
    resize: vertical;
    min-height: 150px;
}

.contacto-form-footer {
    text-align: center;
}

.contacto-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5e275e;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
    gap: 15px;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(94, 39, 94, 0.3);
}

.contacto-boton:hover {
    background-color: #4a1f4a;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(94, 39, 94, 0.4);
}

.contacto-boton i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contacto-boton:hover i {
    transform: translateX(8px);
}

/* Animaciones */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .contacto-section {
        padding: 70px 0;
    }
    
    .contacto-titulo {
        font-size: 42px;
    }
    
    .contacto-subtitulo {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .contacto-section {
        padding: 60px 0;
    }
    
    .contacto-container {
        padding: 0 20px;
    }
    
    .contacto-titulo {
        font-size: 36px;
    }
    
    .contacto-subtitulo {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .contacto-form {
        padding: 40px 30px;
    }
    
    .contacto-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contacto-boton {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contacto-section {
        padding: 50px 0;
    }
    
    .contacto-container {
        padding: 0 15px;
    }
    
    .contacto-titulo {
        font-size: 32px;
    }
    
    .contacto-subtitulo {
        font-size: 15px;
    }
    
    .contacto-form {
        padding: 30px 20px;
    }
    
    .contacto-label {
        font-size: 14px;
    }
    
    .contacto-input,
    .contacto-textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .contacto-boton {
        padding: 14px 30px;
        font-size: 15px;
        max-width: 250px;
    }
    
    .contacto-mensaje-exito,
    .contacto-mensaje-error {
        padding: 20px;
    }
    
    .contacto-mensaje-exito i,
    .contacto-mensaje-error i {
        font-size: 36px;
    }
    
    .contacto-mensaje-exito p {
        font-size: 16px;
    }
}

/* Animaciones para los campos del formulario */
.contacto-form-group {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.contacto-form-group:nth-child(1) { animation-delay: 0.2s; }
.contacto-form-group:nth-child(2) { animation-delay: 0.3s; }
.contacto-form-group:nth-child(3) { animation-delay: 0.4s; }
.contacto-form-group:nth-child(4) { animation-delay: 0.5s; }

.contacto-form-footer {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
    animation-delay: 0.6s;
}

/* Placeholder styles */
.contacto-input::placeholder,
.contacto-textarea::placeholder {
    color: #999999;
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
}

/* Required field indicator */
.contacto-label:contains("*")::after {
    content: " *";
    color: #5e275e;
    font-weight: bold;
}

/* Hover effect for form */
.contacto-form:hover {
    box-shadow: 0 25px 50px rgba(94, 39, 94, 0.15);
    transition: box-shadow 0.3s ease;
}





/* Footer Styles - Prefijo custom-footer */
.custom-footer {
    background-color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #ead8cc, #5e275e, #ead8cc, transparent);
    animation: footerShine 3s infinite;
}

@keyframes footerShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

/* Columna del Logo */
.logo-col {
    display: flex;
    justify-content: center;
}

.footer-logo-wrapper {
    max-width: 380px;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-site-title {
    font-family: 'playfairDisplay-custom', serif;
    font-size: 28px;
    color: #5e275e;
    font-weight: 400;
}

/* Columna de Redes Sociales */
.social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-title {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: transparent;
    color: #ead8cc;
    border-radius: 50%;
    font-size: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.footer-social-icon:hover {
    background-color: #5e275e;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(94, 39, 94, 0.3);
}

.footer-social-icon:hover::before {
    width: 150px;
    height: 150px;
}

.footer-social-icon i {
    position: relative;
    z-index: 2;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.footer-copyright p {
    font-family: 'Montserrat-custom', 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Animaciones */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-left {
    animation: fadeLeft 1s ease forwards;
}

.animate-fade-right {
    animation: fadeRight 1s ease forwards;
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .custom-footer {
        padding: 50px 0 25px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer-social-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 40px 0 20px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .logo-col {
        justify-content: center;
    }
    
    .social-col {
        align-items: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        max-height: 80px;
    }
    
    .footer-site-title {
        font-size: 24px;
    }
    
    .footer-social-title {
        margin-bottom: 15px;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .custom-footer {
        padding: 35px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-row {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        max-height: 60px;
    }
    
    .footer-site-title {
        font-size: 22px;
    }
    
    .footer-social-icons {
        gap: 12px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-social-title {
        font-size: 16px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

/* Animaciones para los iconos sociales */
.footer-social-icon {
    animation: fadeIn 0.5s ease backwards;
}

.footer-social-icon:nth-child(1) { animation-delay: 0.1s; }
.footer-social-icon:nth-child(2) { animation-delay: 0.2s; }
.footer-social-icon:nth-child(3) { animation-delay: 0.3s; }
.footer-social-icon:nth-child(4) { animation-delay: 0.4s; }
.footer-social-icon:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efecto hover adicional para el logo */
.footer-logo-wrapper {
    position: relative;
}

.footer-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5e275e;
    transition: width 0.3s ease;
}

.footer-logo-wrapper:hover::after {
    width: 100%;
}



a:hover, a:focus, a:active{
    color: #ead8cc;
}
/****************************************************/

