/* ------------------------- */


/* CSS WEB  */


/* ------------------------- */

:root {
    --color-texto: #333;
    /*gris oscuro*/
    --color-fondo: #f8f9fa;
    /* blanco */
    --color-verde_logo: #2f6366;
    /*verde oscuro*/
    --color-rosa_super_claro: #f5f5f5;
    --color-rosa_claro: #faf3f4;
    --color-rosa: #dac7cd;
    --color-rosa_fuerte: #dac7cd;
    --color-blanco: #ffffff;
    --color-gris: #d0dddc;
    --color-titulos: #2d2d2d;
    /* .btn-tienda{
			background: var(--color-verde_logo);
			color:var(--color-blanco) !important; 
			hover 
			background: --color-rosa_fuerte
			color: var(--color-verde_logo)*/
}


/* MENU */


/* NAVBAR */

.navbar-custom {
    background: var(--color-blanco);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 0.45rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    z-index: 999;
}


/* CONTENEDOR LOGO */

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}


/* LOGO */

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 2.5rem;
    width: auto;
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.03);
}


/* TITULO EMPRESA */

.titulo {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    white-space: nowrap;
}


/* MENU */

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}


/* LINKS */

.nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: 0.3s;
    position: relative;
    padding: 0.3rem 0.6rem !important;
}

.nav-link:hover {
    color: var(--color-rosa_fuerte) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--color-verde_logo);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* BOTON CTA */

.btn-tienda {
    background: var(--color-verde_logo);
    color: var(--color-blanco) !important;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-tienda:hover {
    background: var(--color-rosa_fuerte);
    color: var(--color-verde_logo) !important;
    transform: translateY(-2px);
}


/* ICONOS */

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icons a {
    color: #333;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--color-rosa_fuerte);
}


/* LOGIN */

.login-icon img {
    height: 24px;
}

.social-icons i {
    font-size: 1.5rem;
    color: var(--color-texto);
    transition: 0.3s;
}

.social-icons i:hover {
    color: var(--color-verde_logo);
    transform: scale(1.2);
}

.services-section {
    padding: 1rem 0;
    background: #faf8f5;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}


/* CONTENEDOR FOTO */

.service-image-container {
    overflow: hidden;
    height: 25rem;
    /* 400px */
}


/* FOTO */

.service-img {
    width: 100%;
    height: 25rem;
    /*  400px */
    object-fit: cover;
    transition: 0.4s;
}


/* CONTENEDOR FOTO */

.service-image-container_design {
    overflow: hidden;
    height: 100%;
}


/* FOTO */

.service-img_design {
    width: 100%;
    height: 31rem;
    /* 500px */
    object-fit: cover;
    transition: 0.4s;
}

.service-card:hover .service-img {
    transform: scale(1.03);
}


/* TEXTO */

.service-content {
    padding: 1.5rem;
}


/* SUBTITULO */

.service-subtitle {
    color: var(--color-verde_logo);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}


/* TITULO */

.service-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-titulos);
    margin-bottom: 1rem;
}


/* TEXTO */

.service-text {
    color: var(--color-texto);
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-whatsapp {
    background: var(--color-verde_logo);
    color: var(--color-blanco);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: var(--color-rosa_fuerte);
    color: var(--color-verde_logo);
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Poppins', sans-serif;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-titulos);
}

.section-title p {
    color: var(--color-titulos);
    font-size: 1.1rem;
}

.footer {
    background: var(--color-rosa);
    border-top: 4px solid var(--color-verde_logo);
    color: var(--color-texto);
}

.footer-logo {
    max-width: 11rem;
    /* 180px */
    height: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-titulos);
}

.footer-text {
    color: var(--color-texto);
    line-height: 1.7;
    /* max-width:400px; */
    width: 100%;
}

.footer-links li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--color-verde_logo);
}

.footer-links i {
    font-size: 1.1rem;
    color: var(--color-verde_logo);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 7rem;
    /* 100px */
    border: 0;
}

.footer-bottom {
    background: #0b0b0b;
    padding: 1.2rem;
    font-size: 0.95rem;
    color: var(--color-rosa);
}

.footer-bottom a {
    color: var(--color-verde_logo);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--color-blanco);
}


/* BANNER */

.banner-section {
    background: #f5f7f8;
    padding: 1rem 0;
    /* 1rem arriba y abajo */
}

.banner-card {
    /* background:white; */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding:2rem; */
}

.banner-img {
    width: 100%;
    max-width: 62rem;
    /* 1000px */
    height: auto;
    object-fit: contain;
    transition: 0.4s;
}

.banner-img:hover {
    transform: scale(1.01);
}


/* MOBILE */

@media(max-width:768px) {
    .service-image-container {
        height: 180px;
    }
    .service-img {
        height: 180px;
    }
    .service-content {
        padding: 1.2rem;
    }
    .service-title {
        font-size: 1.4rem;
    }
}