/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

body {
    background-color: #fff;
    overflow-x: hidden; /* Evita el desbordamiento horizontal */
}

header {
    position: sticky; /* Hace que el header baje con el contenido */
    top: 0; /* Se pega al borde superior */
    width: 100%;
    z-index: 1000; /* Asegura que esté sobre otros elementos */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    
}


.logooficial{
    border-radius: 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
    background-color: rgba(255, 255, 255, 0.9); /* Fondo blanco con opacidad */
    backdrop-filter: blur(5px); /* Opcional: desenfoque para un efecto moderno */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    transition: background-color 0.3s ease; /* Transición suave */
}


.logo img {
    width: 40px;
    height: auto;
    margin-top: 8px;
    padding: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-list li {
    margin: 0 1.5rem;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b; /* Subrayado */
    transition: width 0.3s ease-in-out;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Contáctame */
.contacto a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #f4c6d6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contacto a:hover {
    background-color: #f4c6d6;
    color: #fff;
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.menu-toggle .bar {
    background-color: #000;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}

/* Efecto hamburguesa a X */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle:hover .bar {
    background-color: #ff6b6b;
}

/* Responsivo */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 1rem 0;
        text-align: center;
    }

    .contacto {
        display: none; /* Ocultar Contáctame en pantallas pequeñas */
    }
}





/* INICIO---------------------------------------------------------------------- */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8d7e2, #fce8ed, #ffffff);
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 65px 30px;
    gap: 20px;
}

/* Contenido del texto */
.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 20px;
}

.cta-button {
    text-decoration: none;
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: #e63946;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #d62839;
    transform: scale(1.05);
}

/* Imagen */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
    border: 8px solid #f8d7e2;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* ----- Responsive Design ----- */

/* Tablets (pantallas medianas) */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }
}

/* Móviles (pantallas pequeñas) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }
}





/*ABOUT ME---------------------------------------------------------------------------------------------*/
/* ===== Sección ABOUT ME ===== */
.about-me-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.about-me-header {
    margin-bottom: 20px;
}

.about-me-title {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.about-me-title .about-me-highlight {
    background-color: #000;
    color: #fff;
    padding: 2px 8px;
    margin-left: 5px;
}

.about-me-quote {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 14px;
}

.about-me-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-me-image img {
    max-width: 280px;
    height: auto;
    border-radius: 5px;
}

.about-me-text p {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.about-me-highlight-text {
    background-color: #feeaea;
    color: #e74c3c;
    padding: 10px;
    border-radius: 5px;
}

/* ===== Sección ABOUT ME JOURNEY ===== */
.about-me-journey {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.about-me-journey-text p {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.about-me-highlight {
    background-color: #faa0a0;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.about-me-highlight p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Ajustes para la sección ABOUT ME */
    .about-me-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-me-image img {
        max-width: 100%;
    }

    .about-me-title {
        font-size: 24px;
    }

    .about-me-quote {
        text-align: center;
        font-size: 12px;
    }

    /* Ajustes para la sección ABOUT ME JOURNEY */
    .about-me-highlight {
        padding: 10px 15px;
    }

    .about-me-highlight p {
        font-size: 14px;
    }

    .about-me-journey-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    /* Ajustes adicionales para pantallas muy pequeñas */
    .about-me-title {
        font-size: 20px;
        flex-direction: column;
        text-align: center;
    }

    .about-me-quote {
        font-size: 11px;
    }

    .about-me-highlight p {
        font-size: 12px;
        line-height: 1.4;
    }

    .about-me-text p {
        font-size: 13px;
    }
}



/*SERVICIOS-----------------------------------------------------------------------------------------*/
/* ===== Estilos generales ===== */
.services-slider {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.services-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Contenedor del slider */
.services-slider-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Elemento del servicio */
.service-item {
    background-color: #f7f7f7;
    width: 250px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item h3 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.service-item .service-summary {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item .service-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
}


.service-image img{
    width: 100%;
    height: auto;
    object-fit: scale-down;
}


/* Detalles del servicio */
.service-details {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    text-align: center;
}

.service-toggle-btn {
    background-color: #f86f68;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.service-toggle-btn:hover {
    background-color: #2980b9;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
    .services-slider-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 80%;
        margin-bottom: 20px;
    }
}




/* Estilo general de la galería ---------------------------------------------------------------------*/
.photo-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
}

.gallery-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Contenedor del slider */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 1s ease;
}

/* Cada imagen del slider */
.slide {
    min-width: 33.333%;
    box-sizing: border-box;
    transition: opacity 1s ease;
    padding: 10px;
}

.slide img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: contain;
}

/* Estilo de los puntos de navegación */
.slider-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.5;
    display: none;
}

.slider-container:hover::after {
    display: block;
}



/* Estilo general de la sección de testimonios ------------------------------------------------------*/
.testimonials {
    display: none;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
}

.testimonials-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Contenedor del slider de testimonios */
.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform 1s ease;
}

/* Estilo de cada testimonio */
.testimonial-item {
    width: 100%;
    min-width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Estilo para el cambio de testimonios */
.testimonials-slider-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.5;
    display: none;
}

.testimonials-slider-container:hover::after {
    display: block;
}




/* Estilos Generales del Footer ----------------------------------------------------------------------*/
.footer {
    background-color: #faa0a02f;
    color: #000;
    padding: 20px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Contenedor del Logo y Nombre */
.conts_logo_nomb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.log_footer {
    margin-right: 10px;
    width: 40px;
    height: 30px;
}

.footer-left, .footer-right {
    flex: 1;
    padding: 10px;
    text-align: center;
}

/* Título principal */
.footer-title {
    font-size: 24px;
    font-family: 'Cursive', sans-serif;
    color: #e15d52;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Texto general */
.footer p {
    font-size: 14px;
    margin: 5px 0;
}

/* Separador */
.footer-divider {
    width: 1px;
    background-color: #000;
    height: 100px;
    margin: 0 10px;
}

.footer-icons a {
    margin: 0 5px;
    display: inline-block;
}

.footer-icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.footer-icons img:hover {
    transform: scale(1.2);
}

/* Créditos */
.footer-credits {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    color: #000;
}


/* Responsive Design ----------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    /* Línea ajustada al centro */
    .footer-divider {
        width: 80%; /* La línea se hace horizontal */
        height: 1px;
        margin: 10px auto;
        background-color: #000;
    }

    .footer-left, .footer-right {
        padding: 10px 0;
    }

    .conts_logo_nomb {
        justify-content: center;
    }

    .footer-icons img {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .footer-title {
        font-size: 20px;
    }

    .footer p {
        font-size: 12px;
    }

    .footer-icons img {
        width: 20px;
        height: 20px;
    }
}


/*BOTON WHATSAP----------------------------------------------------------------------------------------*/
.float{
	position:fixed;
	width:55px;
	height:55px;
	bottom:20px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 2px #000;
	z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
	background-color:#1ab152;
    animation: shake 1s;
	animation-iteration-count: infinite;
}

.my-float{
	margin-top:13px;
}

/*Efectos oton whatsap*/
@keyframes pulse-animation {
    0% {
    box-shadow: 0 0 0 0px #25d36657;
    }
    100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@keyframes shake {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
}

.seo-section {
    width: 100%;
    background-color: #fbf8f8;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .seo-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .seo-title {
    font-size: 28px;
    font-weight: bold;
    color: #e1767f;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .seo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
  }
  
  .seo-text a {
    color: #f19ca5;
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .seo-title {
      font-size: 24px;
    }
  
    .seo-text {
      font-size: 14px;
    }
  }
  
