@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Merriweather&family=Poppins&family=Roboto+Mono&display=swap');

/* Globales */ /*semana 6*/
html {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;    /* 1 rem */
    color: #000;
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
}

section {
    padding: 7.9rem;
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;  
}

a {
    text-decoration: none; 
}

p {
    font-size: 1.6rem;
}

/* ---------------------------------------------------------------------- */
/* Header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.container-header {
    padding: 0 5%;
}

.nav {
    height: 8rem; /* aumenta o disminuye para dar o quitar espacio al logo */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 100px !important; /* este valor se cambia segun la necesidad */
    width: auto !important;
    display: block !important;
}

.logo img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    max-width: 100% !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem; /* espacio entre enlaces */
}

.nav-link {
    color: #FFF;
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: inline-block;
	font-family: 'Merriweather', Georgia, serif; /* <- se hace funcional la 2da fuente solo en el navegador de categorias */
	font-weight: bold;
	
}


.nav-link:hover {
    color: #FFD700;
}

.nav-link.active {
    color: #FFD700; /* esto hace que el enlace activo se destaque en dorado */
}


.banner-nosotros {
    height: 20vh;
    background-image: url('../img/banner-nosotros.png');
    background-size: 100% 100%;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/*semana 6 */
.banner-overlay h1 { 
    font-size: 3rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-overlay p {
    font-size: 1.4rem;
    max-width: 500px;
}

/* Sección Historia */ /*semana 6*/
.section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.3rem;
    background-color: #3bcc75;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.historia-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.historia-img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.historia-text {
    flex: 1;
    min-width: 300px;
}

.historia-text p {
    margin-bottom: 1.6rem;
    line-height: 1.8;
}

/* Información Cuantitativa */
.info-section {
    background-color: #f5f5f5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.info-card {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* centrado horizontal */
    justify-content: center; /* alineación vertical */
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    font-size: 3.5rem;
    color: #3bcc75;
    margin-bottom: 1.5rem;
    display: flex; /* centra el ícono */
    justify-content: center;
    align-items: center;
}

.info-card h3 {
    font-size: 3rem;
    margin: 0 0 1rem 0; /* ajuste de márgenes */
    color: #333;
    line-height: 1.2; /* ajuste de line-height para mejorar la apariencia */
}

.info-card p {
    color: #666;
    margin: 0; /* esto elimina el margen predeterminado */
}

/* Sección Misión, Visión, Valores */
.mvv-section {
    background-color: #f9f9f9;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 3.5rem;
    color: #3bcc75;
    margin-bottom: 2rem;
}

.mvv-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.mvv-card p {
    line-height: 1.8;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card ul li {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.mvv-card ul li::before {
    content: "•";
    color: #3bcc75;
    position: absolute;
    left: 0;
}

/* Compromisos */
.compromisos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.compromiso-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%; /* altura uniforme */
    display: flex;
    flex-direction: column;
}

.compromiso-card:hover {
    transform: translateY(-10px);
}

.compromiso-img {
    height: 200px;
    overflow: hidden;
}

.compromiso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* todas las imágenes cubren el espacio sin distorsión */
}

.compromiso-card h3 {
    font-size: 2rem;
    padding: 2rem 2rem 1rem;
}

.compromiso-card p {
    padding: 0 2rem 2rem;
    line-height: 1.8;
    flex-grow: 1; /* el texto ocupa el espacio disponible */
}

/* Equipo */
.equipo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.equipo-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%; /* altura uniforme */
    display: flex;
    flex-direction: column;
}

.equipo-card:hover {
    transform: translateY(-10px);
}

.equipo-img {
    height: 280px;
    overflow: hidden;
}

.equipo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.equipo-card:hover .equipo-img img {
    transform: scale(1.1);
}

.equipo-card h3 {
    font-size: 2.2rem;
    padding: 2rem 2rem 0.5rem;
}

.cargo {
    color: #3bcc75;
    font-weight: 500;
    padding: 0 2rem 1rem;
}

.equipo-card p:not(.cargo) {
    padding: 0 2rem 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

/* Testimonios */
.testimonios-section {
    background-color: #f9f9f9;
}

.testimonios-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
}

.testimonio {
    min-width: 300px;
    max-width: 500px;
    scroll-snap-align: start;
    flex: 1;
}

.testimonio-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonio-content::before {
    content: '\201C';
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: 1rem;
    color: #3bcc75;
    opacity: 0.3;
}

.testimonio-content p {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cliente-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cliente-info p {
    font-size: 1.4rem;
    color: #777;
    margin: 0;
}

/* ESTILOS DE PRODUCTOS - INTEGRADOS */
/* Estilo para la página principal de productos */
.principal {
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    color: rgb(54, 54, 54);
    font-size: 2rem;
    padding-top: 8rem; /* Ajuste para el navbar fijo */
}

/* Sección de beneficios (Reel) */
.reel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
    padding: 10px 5%;
    background-color: rgba(240, 240, 240, 0.966);
}

.reel-square {
    background-color: rgba(240, 240, 240, 0.966);
}

.reel-img {
    display: inline-block;
}

.reel-logo {
    width: 40px;
    vertical-align: middle;
}

.reel-content {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.reel-title {
    color: rgb(52, 52, 52);
    font-weight: bold;
    font-size: 12px;
    text-align: left;
}

.reel-title:hover {
    cursor: pointer;
    text-decoration: underline;
}

.reel-description {
    color: rgb(71, 71, 71);
    font-size: 12px;
    text-align: left;
}

/* Sección de productos (Barra) */
.barra {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    text-align: center;
    padding: 0 5%;
    margin-bottom: 4rem;
}

.barra-square {
    transition: box-shadow 0.3s;
    height: 500px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.barra-square:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}

.barra-img {
    width: 240px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto;
    padding-top: 15px;
}

.barra-description {
    text-align: center;
    padding: 15px 20px;
    height: 70px;
}

.barra-title {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 500;
}

.barra-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.barra-price {
    margin-bottom: 0px;
    color: rgb(56, 56, 56);
    font-size: 1.6rem;
}

.barra-price-deal {
    margin-bottom: 10px;
    text-decoration: line-through;
    margin-right: 5px;
    font-size: 1.5rem;
}

.deals-price {
    color: #3bcc75;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.6rem;
}

.barra-btn-buy {
    padding: 20px 0;
}

/* semana 7 */
.barra-button {
    background-color: #3bcc75;
    color: white;
    border: none;
    border-radius: 10px;
    transition: opacity 0.10s; /* <- transicion que opaca el boton */
    padding: 10px 70px;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 1.5rem;
    cursor: pointer;
}

.barra-button:hover {
    opacity: 0.8;
}

.barra-button:active {
    opacity: 0.5;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    font-size: 1.4rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-info {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-contact, .footer-social, .footer-hours {
    min-width: 200px;
    flex: 1;
}

.footer-contact h3, .footer-social h3, .footer-hours h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-contact h3::after, .footer-social h3::after, .footer-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 0.2rem;
    background-color: #3bcc75;
}

/* Elementos de contacto en vertical */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: #3bcc75;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    width: 1.6rem;
    text-align: center;
}

.contact-item p {
    font-size: 1.4rem;
    margin: 0;
}

/* Redes sociales en vertical */
.social-icons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-icon-item {
    display: flex;
    align-items: center;
    color: #ccc;
    transition: all 0.3s;
}

.social-icon-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 1.6rem;
    margin-right: 1.2rem;
    transition: all 0.3s;
}

.social-icon-item:hover {
    color: #3bcc75;
}

.social-icon-item:hover i {
    background-color: #3bcc75;
    transform: translateY(-2px);
}

.social-icon-item span {
    font-size: 1.4rem;
}

/* Horarios */
.footer-hours p {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #ccc;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #ccc;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #3bcc75;
}

.separator {
    color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
    section {
        padding: 5rem 2rem;
    }
    
    .container {
        width: 90%;
    }
    
    .banner-overlay h1 {
        font-size: 3.2rem;
    }
    
    .historia-content,
    .mvv-grid,
    .compromisos-grid,
    .equipo-grid {
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Productos responsive */
    .reel {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }
    
    .barra {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-logo {
        text-align: center;
        max-width: none;
    }
    
    .footer-contact h3::after, .footer-social h3::after, .footer-hours h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact, .footer-social, .footer-hours {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
    
    .social-icons-vertical {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Banner de Adopta */
.banner-adopta {
    height: 20vh;
    background-image: url('../img/banner-adopta.png');
    background-size: 100% 100%;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

/* Sección de Adopción */
.adopcion-section {
    background-color: #fff;
}

.adopcion-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

.adopcion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mascota-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

.mascota-card:hover {
    transform: translateY(-10px);
}

.mascota-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.mascota-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mascota-card h3 {
    font-size: 2.2rem;
    margin: 1.5rem 0 1rem;
}

.mascota-info {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mascota-info p {
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.adoptar-btn {
    background-color: #3bcc75;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.adoptar-btn:hover {
    background-color: #2da362;
}

/* Proceso de Adopción */
.proceso-adopcion-section {
    background-color: #f9f9f9;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.proceso-card {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.proceso-card:hover {
    transform: translateY(-10px);
}

.proceso-icon {
    font-size: 3.5rem;
    color: #3bcc75;
    margin-bottom: 2rem;
}

.proceso-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.proceso-card p {
    line-height: 1.8;
}

/* Responsive para pantallas pequeñas */
@media screen and (max-width: 768px) {
    .adopcion-grid,
    .proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .mascota-img {
        height: 250px;
    }
}

/* Banner de Sugerencias */
.banner-sugerencias {
    height: 20vh;
    background-image: url('../img/banner-sugerencias.jpg');
    background-size: cover; /* Mantiene proporción */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

/* Sección de Sugerencias */
.sugerencias-section {
    background-color: #fff;
    padding-bottom: 8rem;
}

.sugerencias-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

.form-container-full {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
}

.form-section-full {
    width: 100%;
}

.sugerencias-form .form-group {
    margin-bottom: 2rem;
}

.sugerencias-form label {
    display: block;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.sugerencias-form input,
.sugerencias-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: border-color 0.3s;
}

.sugerencias-form input:focus,
.sugerencias-form textarea:focus {
    border-color: #3bcc75;
    outline: none;
}

.submit-btn {
    background-color: #3bcc75;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #2da362;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .form-container-full {
        padding: 3rem;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('../img/banner-index.png'); /* Usando una imagen existente del sitio */
    background-size: contain;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay oscuro para mejorar legibilidad */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #3bcc75;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2da362;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Sección de Servicios */
.services-section {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 4rem 3rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 4rem;
    color: #3bcc75;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
}

.service-link {
    color: #3bcc75;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.service-link:hover {
    color: #2da362;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Productos Destacados */
.featured-products-section {
    padding: 8rem 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.8rem;
    padding: 2rem 2rem 1rem;
}

.product-price {
    color: #3bcc75;
    font-weight: 600;
    padding: 0 2rem;
    font-size: 1.8rem;
}

.product-btn {
    display: block;
    background-color: #3bcc75;
    color: white;
    border: none;
    width: 90%;
    margin: 1.5rem auto;
    padding: 1.2rem 0;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-btn:hover {
    background-color: #2da362;
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.view-all-btn:hover {
    background-color: #555;
    transform: translateY(-3px);
}

/* Sección de Adopción Destacada */
.featured-adoption-section {
    padding: 8rem 0;
    background-color: #f5f5f5;
}

.adoption-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.adoption-text {
    flex: 1;
    min-width: 300px;
    max-width: 60%;
}

.adoption-text h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.adoption-text p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.adoption-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3bcc75;
    color: #fff;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.adoption-btn:hover {
    background-color: #2da362;
    transform: translateY(-3px);
}

.adoption-image {
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.adoption-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .adoption-content {
        flex-direction: column;
    }
    
    .adoption-text {
        max-width: 100%;
    }
    
    .adoption-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
}

/* Banner de Cuidados */
.banner-cuidados {
    height: 20vh;
    background-image: url('../img/cuidadosBanner.jpg'); /* Crear esta imagen */
    background-size: contain;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

/* Banner de Contacto */
.banner-contacto {
    height: 20vh;
    background-image: url('../img/banner-contacto.png');
    background-size: 100% 100%;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

/* Sección en Construcción */
.construccion-section {
    padding: 5rem 0 8rem;
    background-color: #fff;
}

.construccion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.construccion-icon {
    font-size: 5rem;
    color: #3bcc75;
    margin-bottom: 2rem;
}

.construccion-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.construccion-content p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.construccion-img {
    max-width: 400px;
    margin: 3rem auto;
}

.construccion-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.volver-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3bcc75;
    color: #fff;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.volver-btn:hover {
    background-color: #2da362;
    transform: translateY(-3px);
}

/* Contacto alternativo */
.contacto-alternativo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.contacto-metodo {
    flex: 0 0 auto;
    width: 200px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.contacto-metodo:hover {
    transform: translateY(-5px);
}

.contacto-metodo i {
    font-size: 3rem;
    color: #3bcc75;
    margin-bottom: 1.5rem;
}

.contacto-metodo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contacto-metodo p {
    font-size: 1.5rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contacto-alternativo {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .contacto-metodo {
        width: 80%;
    }
    
    .construccion-img {
        max-width: 300px;
    }
}

/* Estilos para Libro de Reclamaciones */
.libro-reclamaciones {
    color: #ffe066 !important; /* Color amarillo más claro para destacar */
    position: relative;
    padding-left: 2.2rem;
}

.libro-reclamaciones::before {
    content: "📋"; /* Emoji de portapapeles */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
}

.libro-reclamaciones:hover {
    color: #3bcc75 !important; /* Mismo verde que otros elementos interactivos */
}

/* En pantallas pequeñas */
@media screen and (max-width: 768px) {
    .libro-reclamaciones {
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
}

/* Estilos para Libro de Reclamaciones */
.libro-reclamaciones {
    color: #ffe066 !important; /* Color amarillo más claro para destacar */
    position: relative;
    padding-left: 2.2rem;
}

.libro-reclamaciones::before {
    content: "📋"; /* Emoji de portapapeles */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
}

.libro-reclamaciones:hover {
    color: #3bcc75 !important; /* Mismo verde que otros elementos interactivos */
}

/* Banner de Reclamaciones */
.banner-reclamaciones {
    height: 20vh;
    background-image: url('../img/banner-reclamo.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

/* Sección de Reclamaciones */
.reclamaciones-section {
    background-color: #fff;
    padding-bottom: 8rem;
}

.reclamaciones-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reclamaciones-form .form-group {
    margin-bottom: 2rem;
}

.reclamaciones-form label {
    display: block;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.reclamaciones-form input,
.reclamaciones-form select,
.reclamaciones-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: border-color 0.3s;
}

.reclamaciones-form input:focus,
.reclamaciones-form select:focus,
.reclamaciones-form textarea:focus {
    border-color: #3bcc75;
    outline: none;
}

.reclamaciones-form input[type="file"] {
    padding: 0.8rem 0;
    border: none;
    background-color: #f8f8f8;
}

.reclamaciones-form button {
    background-color: #3bcc75;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    align-self: flex-end;
}

.reclamaciones-form button:hover {
    background-color: #2da362;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .libro-reclamaciones {
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
    
    .reclamaciones-form button {
        align-self: center;
        width: 100%;
    }
}

/* Estilos adicionales para las páginas de Política de Privacidad y Términos y Condiciones */

/* Contenedor principal */
.politica-content,
.terminos-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Título de sección */
.politica-section .section-title,
.terminos-section .section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

/* Fecha de actualización */
.politica-fecha,
.terminos-fecha {
    margin-bottom: 2.5rem;
    color: #666;
    font-size: 1.4rem;
}

/* Introducción */
.politica-intro,
.terminos-intro {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Secciones */
.politica-seccion,
.terminos-seccion {
    margin-bottom: 3.5rem;
}

.politica-seccion h3,
.terminos-seccion h3 {
    font-size: 2.2rem;
    color: #3bcc75;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.politica-seccion h4,
.terminos-seccion h4 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #444;
}

.politica-seccion p,
.terminos-seccion p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Listas */
.politica-seccion ul,
.terminos-seccion ul {
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.politica-seccion ul li,
.terminos-seccion ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.5rem;
}

/* Lista de contacto */
.contacto-lista {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.contacto-lista li {
    padding: 0.8rem 0;
    font-size: 1.6rem;
    color: #3bcc75;
}

/* Enlace activo en el footer */
.footer-legal a.active {
    color: #3bcc75 !important;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .politica-content,
    .terminos-content {
        padding: 1.5rem;
    }
    
    .politica-section .section-title,
    .terminos-section .section-title {
        font-size: 2.5rem;
    }
    
    .politica-seccion h3,
    .terminos-seccion h3 {
        font-size: 2rem;
    }
    
    .politica-seccion h4,
    .terminos-seccion h4 {
        font-size: 1.6rem;
    }
}

/* Estilos para la página de contacto */

/* Sección de contacto principal */
.contacto-section {
    background-color: #fff;
    padding-bottom: 5rem;
}

.contacto-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
    line-height: 1.6;
}

/* Contenedor de dos columnas */
.contacto-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
}

/* Columna de información de contacto */
.contacto-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    background-color: #3bcc75;
    color: white;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    font-size: 2rem;
}

.info-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-details p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Redes sociales en sección de contacto */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #333;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #3bcc75;
    transform: translateY(-3px);
}

/* Formulario de contacto */
.contacto-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contacto-form-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contacto-form-container p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto-form .form-group {
    margin-bottom: 1.5rem;
}

.contacto-form label {
    display: block;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: border-color 0.3s;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: #3bcc75;
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 2rem;
}

.form-check input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.form-check label {
    font-size: 1.4rem;
    margin: 0;
}

.form-check a {
    color: #3bcc75;
    text-decoration: underline;
}

.submit-btn {
    background-color: #3bcc75;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #2da362;
}

/* Sección de mapa */
.mapa-section {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.mapa-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mapa-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #e9e9e9;
    border-radius: 10px;
    overflow: hidden;
}

.mapa-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    color: #333;
    text-align: center;
    padding: 2rem;
}

.mapa-overlay p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mapa-overlay .small {
    font-size: 1.4rem;
    color: #666;
}

/* Sección de Preguntas Frecuentes */
.faq-section {
    background-color: #fff;
    padding: 5rem 0 8rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #333;
}

.faq-question i {
    color: #3bcc75;
    font-size: 1.6rem;
}

.faq-answer {
    display: none;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 2rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contacto-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
        margin-right: 1.5rem;
    }
    
    .contacto-form-container {
        padding: 2rem;
    }
    
    .submit-btn {
        align-self: center;
        width: 100%;
    }
    
    .mapa-placeholder {
        height: 300px;
    }
    
    .faq-question h3 {
        font-size: 1.6rem;
    }
}

/* Estilos para la sección de Cuidados - para agregar en styles.css */

/* Banner Cuidados */
.banner-cuidados {
    height: 20vh;
    background-image: url('../img/cuidadosBaner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-overlay p {
    font-size: 1.4rem;
    max-width: 500px;
}

/* Sección Cuidados */
.seccion-cuidados {
    background-color: #fdfdfd;
    color: #333;
    padding: 8rem 5% 5rem;
    line-height: 1.8;
}

.seccion-cuidados h1 {
    font-size: 3.6rem;
    text-align: center;
    color: #3bcc75;
}

.text-principal {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    padding-inline: 15rem;
    text-align: justify;
}

.seccion-cuidados p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.contenedor-cuidados {
    margin-bottom: 5rem;
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 3rem 3rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #ffc845;
}

.contenedor-cuidados h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #000;
    border-bottom: 2px solid #3bcc75;
    padding-bottom: 1rem;
}

.contenedor-cuidados ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contenedor-cuidados li {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
    color: #3bcc75;
}

.contenedor-cuidados li+p {
    margin-top: 1rem;
    font-size: 1.6rem;
    color: #555;
    padding-left: 1.5rem;
    border-left: 3px solid #3bcc75;
}

/* Estilos para los contenedores de video */
.video-container {
    margin-bottom: 5rem;
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 3rem 3rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #ffc845;
}

.video-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #000;
    border-bottom: 2px solid #3bcc75;
    padding-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-description {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.6;
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 3px solid #3bcc75;
}

/* Responsive para la sección de Cuidados */
@media screen and (max-width: 768px) {
    .seccion-cuidados {
        padding: 6rem 2rem;
    }

    .seccion-cuidados h1 {
        font-size: 2.8rem;
    }
    
    .text-principal {
        padding-inline: 0;
    }
    
    .contenedor-cuidados {
        padding: 2rem;
    }
    
    .contenedor-cuidados h2 {
        font-size: 2rem;
    }
    
    .video-container {
        padding: 2rem;
    }
    
    .video-container h2 {
        font-size: 2rem;
    }
    
    .video-description {
        font-size: 1.5rem;
    }
}

/* Menú móvil */
.mobile-menu-btn {
    display: none;
    font-size: 2.4rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #FFD700;
}

/* Clase para mostrar menú móvil */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 8rem;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem 0;
    z-index: 100;
}

.nav-links.active .nav-link {
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: left;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

.banner-condiciones {
    height: 20vh;
    background-image: url('../img/banner-condiciones.png');
    background-size: 100% 100%;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}

.banner-privacidad {
    height: 20vh;
    background-image: url('../img/banner-nosotros.png');
    background-size: 100% 100%;
    background-position: center;
	background-repeat: no-repeat;
    position: relative;
    margin-top: 8rem;
}
/*semana 7 */
@keyframes resaltar {
  0% { background-color: #fffbe6; }
  100% { background-color: #fff; }
}
.destacado {
  animation: resaltar 10s ease-in-out;
}
/* error campo invalido en forms */
.invalid {
    border: 2px solid #e74c3c;
    background-color: #fdecea;
}
/*fin */

/* estilo mensaje final de formulario */
.swal2-title-custom {
    font-size: 2.4rem !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
}

.swal2-html-custom {
    font-size: 1.5rem !important;
    line-height: 1.8;
    margin-top: 15px;
}

.swal2-html-container {
  font-size: 16px;
  margin-top: 10px;
}

.swal2-popup {
  font-size: 18px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.swal-custom-popup {
  font-size: 1.2rem !important;
}

.swal-custom-title {
  font-size: 2rem !important;
  font-weight: 700;
}

.swal-custom-button {
  padding: 10px 24px !important;
  font-size: 1rem !important;
}

.form-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2ecc71;
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  font-size: 16px;
  font-weight: bold;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/*fin estilo */

/* estilo de mensaje maximo de caacteres */ 
.campo-ayuda {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}
/*fin estilo maximo */

/* estilo de submenu */
.nav-item-with-submenu {
    position: relative;
}

.nav-item-with-submenu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #ccc;
    z-index: 999;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-item-with-submenu .submenu li a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.nav-item-with-submenu .submenu li a:hover {
    background-color: #f5f5f5;
    color: #3bcc75;
}

.nav-item-with-submenu:hover .submenu {
    display: block;
}
/* fin submenu */

/* estilo del mapa de contacto */

.mapa-section {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    border-top: 2px solid #e3e3e3;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00a86b;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.mapa-container {
    display: flex;
    justify-content: center;
}

.mapa-embed {
    width: 100%;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}


/*fin mapa*/

/*catalogo*/

.volver-container {
    text-align: left;
    margin-bottom: 1rem;
}

.volver-button {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.volver-button:hover {
    background-color: #f0f0f0;
}
/*fin catalogo*/

/* Titulos llamativos */
.principal, h1 {
    font-family: 'Lobster', cursive;
}

/* Titulos de productos */
.barra-title, .catalogo-nombre {
    font-family: 'Merriweather', serif;
}

/* Descripciones normales */
body, p, .barra-description, .reel-description {
    font-family: 'Poppins', sans-serif;
}

/* Elementos técnicos o de contraste */
footer, small, .mapa-embed, .volver-button {
    font-family: 'Roboto Mono', monospace;
}

