.elementor-2569 .elementor-element.elementor-element-fc2b334{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2569 .elementor-element.elementor-element-7f305e3{--display:flex;}.elementor-2569 .elementor-element.elementor-element-64c82f1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-2c0e1ec *//* CONTENEDORES */
.tamaide-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HERO */
.tamaide-hero {
    text-align: center;
    padding: 40px 20px;
    background: #f4efe9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.tamaide-hero-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* SUBTÍTULO HERO */
.tamaide-subtitle-hero {
    color: #217554;
    font-size: 1.1rem;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .tamaide-subtitle-hero {
        font-size: 1.4rem;
        font-weight: 500;
    }
}

/* SECCIONES GENERALES (CON TARJETA) */
.tamaide-section {
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

/* SECCIONES SIN TARJETA (solo las 3 que pediste) */
.no-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 40px 20px;
}

/* SECCIÓN CON FONDO BEIGE INSTITUCIONAL */
.bg-light {
    background: #f4efe9 !important;
}

/* TITULOS */
.tamaide-section h2 {
    color: #217554;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* COLUMNAS */
.tamaide-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* TARJETAS UNIFORMES Y CENTRADAS */
.uniform-columns {
    justify-content: center;
    align-items: stretch;
}

.tamaide-box {
    flex: 1;
    min-width: 250px;
    height: 140px; /* altura uniforme */
    background: #4bbe93;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);

    /* centrado vertical y horizontal */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LISTAS */
.tamaide-list {
    list-style: none;
    padding: 0;
}
.tamaide-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.1rem;
}

/* ESTADÍSTICAS */
.tamaide-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.stat-box {
    flex: 1;
    min-width: 250px;
    background: #217554;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.stat-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #f6e42d;
}

/* CENTRADO COMPLETO DEL BLOQUE */
.center-content {
    text-align: center;
}

/* BOTONES INSTITUCIONALES SIN FONDO DE SECCIÓN */
.tamaide-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.tamaide-btn {
    background: #217554;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.tamaide-btn:hover {
    background: #4bbe93;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Ajuste de posición para la sección de Documentación oficial */
.center-content {
    text-align: center;
    margin-top: -30px; 
     margin-bottom:  50px;
}

/* Si quieres un efecto más suave */
@media (min-width: 768px) {
    .center-content {
        margin-top: -40px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2df540c *//* GALERÍA INSTITUCIONAL */
.tamaide-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: -50px;
}

.tamaide-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.tamaide-gallery img:hover {
    transform: scale(1.03);
}

/* GALERÍA INSTITUCIONAL CON BORDE VERDE Y SOMBRA */
.tamaide-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tamaide-gallery img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #217554; /* borde verde institucional */
    box-shadow: 0 4px 12px rgba(0,0,0,0.10); /* sombra suave */
    transition: all 0.3s ease;
}

/* HOVER ELEGANTE */
.tamaide-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-color: #4bbe93; /* verde agua en hover */
}/* End custom CSS */