/* =========================
   Alianzas Estratégicas
========================= */
.alianzas-title-wrapper {
    margin-bottom: 35px;
}

.echofy-text-section .marquee-block .content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
}

.echofy-text-section .marquee-block .content-box .title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.echofy-text-section .marquee-block .content-box .title span img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Hero específico de single-proyecto */
.single-project-hero {
    min-height: 60vh;
    height: 60vh;
}
.texto-verde{
    color: #7EA54A !important;
}

/* Header Sticky - Color de fondo personalizado */
.header-area.sticky,
.mobile-menu-area.sticky,
.mobile-menu-area .mean-container,
.mean-container.sticky {
    background: #7EA54A !important;
}

/* Sticky real para mobile (asegura barra fija) */
@media (max-width: 991.98px) {
    .mean-container .mean-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
    }
}

/* Hero Area - Posición relativa para el mapa */
.hero-area {
    position: relative;
    z-index: 2;
}

/* Mapa que se extiende sobre la siguiente sección */
.hero-map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: auto;
    z-index: 10;
    pointer-events: none; /* No interfiere con clicks */
}

.hero-map-overlay img {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

/* About Area - Z-index menor para que el mapa quede encima */
.about-area {
    position: relative;
    z-index: 1;
    padding: 50px 0 120px;
}

/* Imagen de historia con z-index menor */
.historia-image {
    position: relative;
    z-index: 1;
}

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

/* Descripción de historia */

.historia-descripcion p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

/* Responsive Styles */
/* Tablet and Mobile: Hide top header and desktop menu */
@media (max-width: 991px) {
    .top-header-area {
        display: none !important;
    }
    
    .header-area {
        display: none !important;
    }
    
    .mobile-menu-area {
        display: block !important;
    }
    
    /* En mobile el mapa ocupa todo el ancho */
    .hero-map-overlay {
        width: 80%;
        right: 10%;
    }
}

@media (max-width: 767px) {
    /* En mobile pequeño ocultar el mapa para no saturar */
    .hero-map-overlay {
        display: none;
    }
    
    .about-area {
        padding: 60px 0;
    }
}

/* ===================================
   Sobre HINS Brasil Section
=================================== */

.sobre-hins-area {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sobre-hins-area .container {
    position: relative;
    z-index: 1;
}

/* Subtítulo centrado con icono */
.sobre-hins-subtitle {
    margin-bottom: 40px;
}

.sobre-hins-subtitle .subtitle-icon {
    width: 40px;
    height: auto;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.sobre-hins-subtitle h4 {
    display: inline-block;
    color: #7EA54A;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    vertical-align: middle;
}

/* Sección de introducción (título y descripción) */
.sobre-hins-intro {
    margin-bottom: 60px;
}

.sobre-hins-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #527326;
    line-height: 1.3;
    margin: 0;
}

.sobre-hins-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Contenedor de imagen y tarjetas */
.sobre-hins-content {
    margin-top: 40px;
}

.sobre-hins-image {
    position: relative;
    z-index: 1;
}

.sobre-hins-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tarjetas */
.sobre-hins-cards {
    padding-left: 30px;
}

.sobre-hins-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #F7F0E8;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #7EA54A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sobre-hins-card:hover {
    transform: translateX(-15px);
    box-shadow: 0 10px 30px rgba(126, 165, 74, 0.3);
}


.sobre-hins-card .card-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0 0 10px 0;
}

.sobre-hins-card .card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .sobre-hins-title h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .sobre-hins-cards {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .sobre-hins-intro {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .sobre-hins-area {
        padding: 60px 0;
    }
    
    .sobre-hins-title h2 {
        font-size: 26px;
    }
    
    .sobre-hins-description p {
        font-size: 15px;
    }
    
    .sobre-hins-card {
        padding: 20px;
    }
    
    .sobre-hins-card .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .sobre-hins-card .card-icon img {
        width: 25px;
        height: 25px;
    }
}

/*Template Parts - Servicios*/
/* ========== SECCIÓN PRINCIPAL ========== */
.sustentabilidad-section {
    padding: 80px 0;
    background: #fff;
}

/* ========== HEADER CON LOGO ========== */
.section-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.header-logo-text {
    font-size: 13px;
    font-weight: 600;
    color: #7EA54A;
    margin: 0;
    letter-spacing: 0.5px;
}

.header-divider {
    width: 100%;
    height: 2px;
    background: #7ea54a;
    margin-bottom: 40px;
}

/* ========== SUBTÍTULO Y TÍTULO PRINCIPAL ========== */
.section-intro {
    margin-bottom: 50px;
}

.section-video {
    margin-bottom: 50px;
}

.service-video-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    background-color: #111;
    cursor: pointer;
    isolation: isolate;
}

.service-video-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.service-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.service-video-poster--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(126,165,74,0.9), rgba(62,92,27,0.9));
}

.service-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
    border: none;
    border-radius: 0;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-video-play:focus-visible {
    outline: 3px solid #7ea54a;
    outline-offset: 4px;
}

.service-video-play:hover {
    background: radial-gradient(circle at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%);
}

.service-video-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(126, 165, 74, 0.92);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-video-play:hover .service-video-play-icon {
    transform: scale(1.08);
    background: rgba(126, 165, 74, 1);
}

.service-video-play-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
}

.service-video-wrapper.is-playing .service-video-poster {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.service-video-wrapper.is-playing .service-video-play {
    opacity: 0;
    pointer-events: none;
}

.service-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

.subtitulo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.subtitulo-text {
    font-size: 14px;
    font-weight: 600;
    color: #7ea54a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.titulo-principal {
    font-size: 36px;
    font-weight: 700;
    color: #527326;
    line-height: 1.3;
    margin-bottom: 20px;
}

.descripcion-principal {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ========== GRID DE TARJETAS ========== */
.tarjetas-grid {
    margin-bottom: 40px;
}

/* ========== FLIP CARDS ========== */
.flip-card-sustentabilidad {
    background-color: transparent;
    perspective: 1000px;
    height: 350px;
    position: relative;
}

.flip-card-sustentabilidad-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.flip-card-sustentabilidad:hover .flip-card-sustentabilidad-inner {
    transform: rotateY(180deg);
}

.flip-card-sustentabilidad-front,
.flip-card-sustentabilidad-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

/* ========== FRENTE DE LA TARJETA ========== */
.flip-card-sustentabilidad-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    box-sizing: border-box;
    overflow: hidden;
}

.card-content-front {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.flip-card-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.flip-card-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 4, 0.68) 0%, rgba(12, 24, 6, 0.52) 45%, rgba(6, 10, 3, 0.78) 100%);
    z-index: 2;
}

.flip-card-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border: 0;
}

.card-icon-servicios img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-titulo-frente {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* ========== REVERSO DE LA TARJETA ========== */
.flip-card-sustentabilidad-back {
    background-color: #fff;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 35px 30px;
    border: 1px solid #7EA54A;
    box-sizing: border-box;
}

.card-content-back {
    width: 100%;
    text-align: left;
}

.card-titulo-atras {
    font-size: 20px;
    font-weight: 700;
    color: #7ea54a;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-descripcion {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.card-descripcion p {
    margin-bottom: 12px;
}

.card-descripcion ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.card-descripcion ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.card-descripcion ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7ea54a;
    font-weight: bold;
}

/* ========== BOTÓN CTA ========== */
.text-right {
    text-align: right !important;
}

.btn-sustentabilidad {
    display: inline-block;
    background-color: #7ea54a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #7ea54a;
}

.btn-sustentabilidad:hover {
    background-color: #6b8f3f;
    border-color: #6b8f3f;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 165, 74, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .titulo-principal {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .descripcion-principal {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .sustentabilidad-section {
        padding: 50px 0;
    }
    
    .section-intro {
        margin-bottom: 30px;
    }
    
    .titulo-principal {
        font-size: 24px;
    }
    
    .flip-card-sustentabilidad {
        height: auto;
        min-height: 300px;
    }
    
    /* En móvil, deshabilitar el flip y mostrar solo el reverso */
    .flip-card-sustentabilidad-inner {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .flip-card-sustentabilidad-front {
        display: none !important;
    }
    
    .flip-card-sustentabilidad-back {
        position: relative;
        transform: none !important;
        -webkit-transform: none !important;
        height: auto;
        min-height: auto;
    }
    
    .btn-sustentabilidad {
        display: block;
        text-align: center;
        margin: 20px auto 0;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .header-logo-text {
        font-size: 14px;
    }
    
    .titulo-principal {
        font-size: 22px;
    }
    
    .descripcion-principal {
        font-size: 14px;
    }
    
    .card-titulo-atras {
        font-size: 18px;
    }
}

/* ===================================
   Por Qué Elegirnos Section
   Sección con mapa y estadísticas
=================================== */

/* ========== CONTENEDOR PRINCIPAL ========== */
.por-que-elegirnos-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* ========== CONTENIDO DE TEXTO ========== */
.contenido-texto {
    text-align: left;
}

/* Subtítulo con icono */
.contenido-texto .subtitulo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

/* Título principal */
.titulo-por-que {
    font-size: 42px;
    font-weight: 700;
    color: #527326;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Descripción con párrafos */
.descripcion-por-que p {
    font-size: 18px !important;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.descripcion-por-que p {
    margin-bottom: 18px;
}

.descripcion-por-que strong {
    font-weight: 700;
    color: #333;
}

/* ========== BOTÓN CTA ========== */
.btn-por-que {
    display: inline-block;
    background-color: #7ea54a;
    color: #fff;
    padding: 14px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #7ea54a;
}

.btn-por-que:hover {
    background-color: #6b8f3f;
    border-color: #6b8f3f;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 165, 74, 0.3);
}

/* ========== SECCIÓN DE ESTADÍSTICAS (USA ESTILOS DEL TEMPLATE) ========== */
.estadisticas-container {
    position: relative;
    padding: 100px 0 60px;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Número superpuesto sobre el ícono */
.process-icon-thumb-two {
    position: relative;
}

.numero-sobre-icono {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    font-weight: 700;
    color: #7ea54a;
    z-index: 10;
}

/* ========== RESPONSIVE - POR QUÉ ELEGIRNOS ========== */
@media (max-width: 991px) {
    .titulo-por-que {
        font-size: 32px;
    }

    .contenido-texto {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .por-que-elegirnos-section {
        padding: 50px 0;
    }

    .titulo-por-que {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .descripcion-por-que {
        font-size: 15px;
    }

    .estadisticas-container {
        padding: 80px 0 50px;
        background-size: 90%;
    }

    .numero-sobre-icono {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .titulo-por-que {
        font-size: 24px;
    }

    .descripcion-por-que {
        font-size: 14px;
    }

    .btn-por-que {
        display: inline-block;
    }

    .numero-sobre-icono {
        font-size: 36px;
    }
}

.descripcion-estadistica{
    font-size: 13px;
    text-transform: uppercase;
    color: #7EA54A;
    font-weight: 800;
}

/* ===================================
   Sección de Clientes
   Galería de logos de clientes
=================================== */

.clientes-section {
    padding: 80px 0;
    background-color: #fff;
}

.titulo-clientes {
    font-size: 42px;
    font-weight: 700;
    color: #527326;
    margin-bottom: 0;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 120px;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-cliente {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ========== RESPONSIVE - CLIENTES ========== */
@media (max-width: 991px) {
    .titulo-clientes {
        font-size: 36px;
    }

    .logo-item {
        height: 100px;
    }

    .logo-cliente {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .clientes-section {
        padding: 60px 0;
    }

    .titulo-clientes {
        font-size: 32px;
        margin-bottom: 0;
    }

    .logo-item {
        height: 90px;
        padding: 15px;
    }

    .logo-cliente {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .titulo-clientes {
        font-size: 28px;
    }

    .logo-item {
        height: 80px;
        padding: 10px;
    }

    .logo-cliente {
        max-height: 50px;
    }
}

/* ===================================
   Sección de Proyectos
   Header y tarjetas de proyectos
=================================== */

.proyectos-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Header: Icono + Subtítulo + Título */
.proyectos-header {
    text-align: center;
}

.subtitulo-con-icono {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.icono-proyectos {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.subtitulo-proyectos {
    font-size: 14px;
    font-weight: 600;
    color: #7ea54a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.titulo-proyectos {
    font-size: 42px;
    font-weight: 700;
    color: #527326;
    line-height: 1.3;
    margin: 0;
}

/* ========== TARJETAS DE PROYECTOS ========== */
.proyectos-section .single-project-box {
    position: relative;
    border: 2px solid #a8d08d;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay oscuro con gradiente */
.proyectos-section .single-project-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.proyectos-section .project-content {
    position: relative;
    padding: 5px 25px 10px;
    background: transparent;
    border: none;
    width: 100%;
    margin: 0;
    z-index: 2;
}

.proyectos-section .project-content h4 {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.proyectos-section .project-content h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.proyectos-section a.project-button,
.proyectos-section .single-project-box a.project-button {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 3 !important;
}

.proyectos-section .project-button i,
.proyectos-section a.project-button i {
    color: #fff !important;
    font-size: 24px;
    margin-left: 3px;
    vertical-align: middle;
    display: inline-block !important;
}

/* ========== RESPONSIVE - PROYECTOS ========== */
@media (max-width: 991px) {
    .titulo-proyectos {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .proyectos-section {
        padding: 60px 0;
    }

    .titulo-proyectos {
        font-size: 32px;
    }

    .icono-proyectos {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .titulo-proyectos {
        font-size: 28px;
    }

    .subtitulo-proyectos {
        font-size: 13px;
    }

    .icono-proyectos {
        width: 30px;
        height: 30px;
    }
}

/* ===================================
   Pre-Footer Section
   Caja verde con mensaje y redes sociales
=================================== */

.pre-footer-section {
    padding: 60px 0;
    background-color: #fff;
}

.pre-footer-card {
    padding: 50px 60px;
    border-radius: 15px;
}

.pre-footer-content .texto-intro {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pre-footer-content .titulo-principal {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pre-footer-social {
    text-align: right;
}

.pre-footer-social .social-label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.pre-footer-social .social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.pre-footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pre-footer-social .social-icons a:hover {
    background-color: #fff;
    color: #7ea54a;
}

/* Footer - Estilos adicionales */
.footer-contact-list p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    color: #7ea54a;
    font-size: 16px;
    margin-top: 3px;
}

/* Alinear columna de redes sociales al final */
.footer-area .row.add-footer-class > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-social-icons-column {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-icons-column a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-icons-column a:hover {
    background-color: #7ea54a;
    color: #fff;
}

/* ========== RESPONSIVE - PRE-FOOTER Y FOOTER ========== */
@media (max-width: 991px) {
    .pre-footer-content .titulo-principal {
        font-size: 28px;
    }

    .pre-footer-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .pre-footer-card {
        padding: 30px;
    }

    .pre-footer-content .titulo-principal {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pre-footer-social {
        text-align: center;
        margin-top: 20px;
    }

    .pre-footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pre-footer-section {
        padding: 40px 0;
    }

    .pre-footer-card {
        padding: 25px 20px;
    }

    .pre-footer-content .texto-intro {
        font-size: 14px;
    }

    .pre-footer-content .titulo-principal {
        font-size: 20px;
    }
}

/* ===================================
   Sección de Equipo de Trabajo
   Usa las clases originales del template
=================================== */
/* Los estilos vienen del theme/assets/css/style.css 
   Clases: .team-area, .single-team-box, .single-team-thumb, .team-content, .team-social-icon */

/* Ajustes para imágenes del equipo - Circulares con caja blanca */
.team-area.inner .single-team-box {
    margin-top: -71px;
    margin-bottom: 30px;
    text-align: center;
}

.team-area.inner .single-team-thumb {
    position: relative;
    top: 86px;
    z-index: 1;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.team-area.inner .single-team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    padding: 14px;
    background-color: #fff;
}

.team-area.inner .team-content {
    background: #fff;
    padding: 90px 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 255px;
}

/* Responsive para imágenes */
@media (max-width: 768px) {
    .team-area .single-team-thumb {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .team-area .single-team-thumb {
        width: 160px;
        height: 160px;
    }
}

/* ===================================
   Sección de Contacto
   Info de contacto, mapa y formulario
=================================== */

.contacto-section {
    padding: 80px 0;
}

/* Header */
.contacto-header .subtitulo-con-icono {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icono-contacto {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.subtitulo-contacto {
    font-size: 14px;
    font-weight: 600;
    color: #7ea54a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Título Info Contacto */
.titulo-info-contacto {
    font-size: 32px;
    font-weight: 700;
    color: #527326;
    margin-bottom: 30px;
}

/* Lista de Contacto */
.info-contacto-lista {
    margin-bottom: 40px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.contacto-icon {
    font-size: 24px;
    color: #7ea54a;
    min-width: 24px;
}

.contacto-item a {
    color: #333;
    text-decoration: none;
}

.contacto-item a:hover {
    color: #7ea54a;
}


/* Título del Formulario (fuera de la tarjeta) */
.titulo-formulario {
    font-size: 32px;
    font-weight: 700;
    color: #527326;
    margin-bottom: 30px;
	margin-left: 35px;
}

/* Tarjeta del Formulario */
.formulario-contacto-card {
    padding: 40px;
}

.formulario-wrapper {
    margin-top: 0;
}

/* ========== RESPONSIVE - CONTACTO ========== */
@media (max-width: 991px) {
    .titulo-info-contacto,
    .titulo-formulario {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contacto-section {
        padding: 60px 0;
    }

    .titulo-info-contacto,
    .titulo-formulario {
        font-size: 26px;
    }

    .formulario-contacto-card {
        padding: 30px;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .titulo-info-contacto,
    .titulo-formulario {
        font-size: 24px;
    }

    .formulario-contacto-card {
        padding: 25px;
    }

    .contacto-item {
        font-size: 14px;
    }

    .contacto-icon {
        font-size: 20px;
    }
}

.texto-naranja{
    color: #FE851B !important;
}

div.wpforms-container-full button[type=submit]{
	background: #7ea54a !important;
}

.single-project-content .project-content-text p {
    font-size: 18px; /* Ajustá a gusto */
    line-height: 1.7;
	margin-top: 20px;
}
