

body {
  
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
}

.banner-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.banner {
    
    border-radius: 0;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Contenido de texto */
.text-content {
    padding: 100px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft var(--animation-duration) forwards 0.3s;
    position: relative;
    z-index: 1;
	
	text-align: justify!important;
}

.Titulo {
 
    font-size: 4.2rem !important;
}


.Subtitulo {
  font-size: 3.2rem !important;
}

.list-banner {
 
 
  margin: 0;
}
.list-banner li {
 color:#6e757c;
margin-left:-15px 
}








.primary {
    color: var(--primary-color);
    font-weight: 700;
}

.secondary {
    color: var(--primary-color);
    font-weight: 300;
}

.description {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--animation-duration) forwards 0.6s;
    color: var(--text-color);
	
	font-family: 'PoppinsR';
	 color: #6c757d;
    font-size:1rem;		
}

.description:nth-child(3) {
    animation-delay: 0.8s;
}

.subtitle {
    color: var(--text-color);
    margin: 25px 0 15px;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--animation-duration) forwards 1s;
}

/* Contenedor de imagen */
.image-container1 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fondo turquesa con bordes redondeados específicos */
.turquoise-bg {
    position: absolute;
    width: 75%;
    height: 55%;
    background: linear-gradient(135deg, #00a0b0 0%, #007a8a 100%);
    border-radius: 55px 0 0 55px;
    right:15%;
    top: 12%;
    z-index: 0;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRightSubtle 1.5s forwards 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Círculo blanco que contiene la imagen */
.rounded-image-bg {
    width: 80px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn var(--animation-duration) forwards 0.5s;
    background-color: white;
    z-index: 1;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}


    .family-image {
        width: 660px;
        height: 660px;
        position: relative;
        opacity: 0;
        transform: scale(0.9);
        animation: zoomIn var(--animation-duration) forwards 0.5s;
        z-index: 1;
        object-fit: contain;
    }


/* Círculos decorativos blancos como en la imagen */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    border: none;
    opacity: 0;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    border:0px solid #000
}

.circle1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 5%;
    opacity: 0;
    animation: fadeIn 1s forwards 1s, gentleFloat 4s infinite ease-in-out 2s;
}

.circle2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 9%;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s, gentleFloat 4s infinite ease-in-out 3s;
}

/* Categorías en la parte inferior */
.categories-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
    width: 100%;
}

.category-item {
    display: inline-block;
    text-align: center;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s forwards;
}

.category-text {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.category-separator {
    color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
}

.category-item:nth-child(1) {
    animation-delay: 1.2s;
}

.category-item:nth-child(3) {
    animation-delay: 1.3s;
}

.category-item:nth-child(5) {
    animation-delay: 1.4s;
}

.category-item:nth-child(7) {
    animation-delay: 1.5s;
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes slideInRightSubtle {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    30% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .rounded-image-bg {
        width: 300px;
        height: 300px;
    }
    
    
    
    .text-content {
        padding: 30px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .categories-container {
        flex-direction: column;
    }
    
    .category-separator {
        display: none;
    }
    
    .category-item {
        margin: 10px 0;
        width: 100%;
    }
	
	.Titulo {
 
    font-size: 3rem !important;
}


.Subtitulo {
  font-size: 2.5rem !important;
}

}


/* Responsive */
@media (max-width: 768px) {
    .rounded-image-bg {
        width: 300px;
        height: 300px;
    }
    
    .turquoise-bg {
        width: 90%;
        height: 50%;
        right: 5%;
        top: 10%;
        border-radius: 30px 0 0 30px;
    }
    
    .text-content {
        padding: 20px;
        
    }
    
    .title {
        font-size: 2.5rem !important;
    }
    
    .Titulo {
        font-size: 3rem !important;
    }
    
    .Subtitulo {
        font-size: 2.5rem !important;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .family-image {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .decoration-circle {
        width: 50px;
        height: 50px;
    }
    
    .circle1 {
        top: 15%;
        left: 10%;
    }
    
    .circle2 {
        top: 15%;
        right: 10%;
    }
    
    .categories-container {
        flex-direction: column;
        margin-top: 10px;
    }
    
    .category-separator {
        display: none;
    }
    
    .category-item {
        margin: 8px 0;
        width: 100%;
    }
    
    .banner {
        min-height: auto;
        padding-bottom: 30px;
    }
    
    .image-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Para dispositivos muy pequeños */
@media (max-width: 480px) {
    .family-image {
        width: 300px;
    }
    
    .turquoise-bg {
        height: 60%;
        top: 20%;
    }
    
    .decoration-circle {
        width: 40px;
        height: 40px;
    }
}