* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #8cc63f;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.logo h2 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}

nav .menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav .menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

nav .menu a:hover,
nav .menu a.active {
    border-bottom: 2px solid #ffffff;
}

.redes {
    display: flex;
    align-items: center;
}

.redes a {
    margin: 0 10px;
    font-size: 22px;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.redes a:hover {
    transform: scale(1.3);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-subtitle {
    color: #8cc63f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    color: #9c6ca6;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 25px 0;
}

.hero-text {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #8cc63f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    margin-bottom: 15px;
}

.btn-agendar:hover {
    background-color: #8cc63f;
    transform: translateY(-2px);
}

.btn-agendar:active {
    transform: translateY(0);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 24px; 
    box-shadow: 0 10px 30px rgba(156, 108, 166, 0.08); 
}

.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 60px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.card-servicio {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(156, 108, 166, 0.06);
    border: 1px solid rgba(156, 108, 166, 0.1);
    transition: transform 0.3s ease;
}

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

.card-servicio i {
    font-size: 32px;
    color: #8cc63f;
    margin-bottom: 15px;
    display: block;
}

.card-servicio h3 {
    color: #333333;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-servicio p {
    color: #777777;
    font-size: 13px;
    line-height: 1.5;
}


.quienes-somos {
    max-width: 800px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

.quienes-somos h2 {
    color: #9c6ca6;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
}

.quienes-somos p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}

.mision-vision {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 40px;
    display: flex;
    gap: 30px;
}

.card-info {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(156, 108, 166, 0.05);
    border: 1px solid rgba(156, 108, 166, 0.08);
    text-align: center; 
}

.card-info h3 {
    color: #8cc63f;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-info p {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
}

/* EQUIPO */
.equipo {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    text-align: center;
}

.equipo h2 {
    color: #9c6ca6;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 800;
}

.card-equipo {
    max-width: 350px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(156, 108, 166, 0.05);
    border: 1px solid rgba(156, 108, 166, 0.08);
}

.card-equipo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #8cc63f;
}

.card-equipo h3 {
    color: #333333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-equipo span {
    color: #8cc63f;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-equipo p {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
}

.footer-redes {
    background-color: #9c6ca6;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-redes span {
    color: #ffffff;
}

.footer-redes .redes-iconos {
    display: flex;
    gap: 15px;
}

.footer-redes .redes-iconos a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-redes .redes-iconos a:hover {
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .servicios-container, .mision-vision {
        flex-wrap: wrap;
    }
    .card-servicio, .card-info {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .servicios-container, .mision-vision {
        flex-direction: column;
        padding: 0 20px 40px 20px;
    }
    
    .card-servicio, .card-info {
        width: 100%;
    }

    .footer-redes {
        flex-direction: column;
        gap: 10px;
    }
}



.card-info {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(156, 108, 166, 0.05);
    border: 1px solid rgba(156, 108, 166, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(140, 198, 63, 0.3);
}

.card-equipo {
    max-width: 350px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(156, 108, 166, 0.05);
    border: 1px solid rgba(156, 108, 166, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-equipo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(156, 108, 166, 0.25);
}

.card-equipo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #8cc63f;
    transition: transform 0.5s ease;
}

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


.contacto-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 40px 40px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px; 
    align-items: flex-start;
}

.columna-limpia {
    flex: 1;
    background: transparent;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}


.contacto-titulo {
    color: #9c6ca6;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.contacto-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: #8cc63f;
    border-radius: 2px;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: #8cc63f;
    font-size: 22px;
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.info-item p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contacto-redes {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 45px;
}

.contacto-redes a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.contacto-redes a.icono-fb { color: #3b5998; }
.contacto-redes a.icono-ig { color: #e1306c; }
.contacto-redes a.icono-tk { color: #000000; }
.contacto-redes a.icono-wa { color: #25d366; }

.contacto-redes a:hover {
    transform: scale(1.15);
    background-color: #9c6ca6;
    color: #ffffff;
}
.mapa-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fachada-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.imagen-fachada {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.columna-limpia:hover .imagen-fachada {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .contacto-container {
        flex-direction: column;
        padding: 0 20px 20px 20px;
        gap: 40px;
    }
    .columna-limpia {
        width: 100%;
    }
}

.productos-layout {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
}


.productos-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 150fr));
    gap: 25px;
}

.producto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px !important;
}

.producto-img-container {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.producto-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.producto-card:hover .producto-img-container img {
    transform: scale(1.08);
}

.producto-nombre {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-align: center;
}

.producto-desc {
    color: #777777;
    font-size: 12px;
    margin: 0 0 12px 0;
    text-align: center;
}

.producto-precio {
    color: #2e7d32;
    font-size: 16px;
    font-weight: 800;
}

.productos-action-footer {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2e7d32;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-ver-mas:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

/* RESPONSIVO PARA PANTALLAS PEQUEÑAS */
@media (max-width: 768px) {
    .productos-layout {
        flex-direction: column;
        padding: 0 20px;
    }
    .categorias-sidebar {
        width: 100%;
        box-sizing: border-box;
    }
    .lista-categorias {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .cat-item {
        flex: 1 1 auto;
        justify-content: center;
    }
}

.producto-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.categorias-sidebar {
  background-color: #f8f8f8;
  border-radius: 24px;
  padding: 24px;
  width: 280px;
  font-family: 'Poppins', sans-serif;
}

.categorias-sidebar h3 {
  color: #2e7d32; 
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}


.lista-categorias {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; 
}

.lista-categorias .cat-item,
.lista-categorias a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  text-decoration: none; 
  color: #555555; 
  font-size: 16px;
  font-weight: 500;
  border-radius: 14px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}


.lista-categorias li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.lista-categorias .cat-item.active {
  background-color: #ffffff;
  color: #8e7cc3; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.lista-categorias .cat-item.active i {
  color: #8e7cc3;
}

.lista-categorias i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: #555555;
}

.lista-categorias a:hover,
.lista-categorias .cat-item:hover:not(.active) {
  background-color: #eeeeee;
  color: #222222;
}


.productos-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    margin: 30px 0;        
    width: 100%;           
}

.productos-main-title h2 {
    color: #2e7d32;       
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;     
    margin-bottom: 5px;    
    text-transform: uppercase;
}

.decoracion-huella i {
    color: #2e7d32;         
    font-size: 20px;        
}
.barra-informativa-inferior {
    background-color: #a47bb3; 
    color: #ffffff;            
    text-align: center;        
    padding: 20px;        
    margin-top: 50px;
    
    grid-column: 1 / -1; 
    width: 100%;
    box-sizing: border-box;
    
    position: relative;
    clear: both; 
}

.barra-informativa-inferior p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;           
    font-weight: 500;          
    letter-spacing: 0.5px;     
    margin: 0;                 
    line-height: 1.5;
}

.productos-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    flex-grow: 1; 
}


