* {
    margin: 0px;
    padding: 1px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: #8B4513;
}

body {
    background-color: #F5DEB3;
}


header.navbar {
    background-color: #F5DEB3 !important;
    padding: 5px 5px;
}


.navbar {
    background-color: #F5DEB3 !important;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    background-color: #F5DEB3 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;

    margin: 0 auto;
}


/* Logo */
.logo-font {

    font-size: 3rem;
    font-weight: bolder;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1px;
    line-height: 1.2;
}

.sub-logo {
    color: #714444;
    font-size: medium;
    font-weight: bold;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 0;
    line-height: 1.2;
}

/* Desktop Navigation */
.nav-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links ul li a {
    color: #6B8E23;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #FFD700;
}

/* Mobile Menu */
.hamburger {
    display: none;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
#menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    padding: 20px;
}

/* Mobile Menu */
.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu ul li {
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #714444;
    font-size: 16px;
    display: block;
}

.mobile-menu ul li:hover {

    /* Fondo verde claro */
    color: #333;
    /* Texto oscuro */
    box-shadow: 0 4px 8px rgba(0.5, 0.5, 0.5, 0.5);
    /* Sombra ligera */
}

.mobile-menu ul li:hover a {
    color: #FFC107;
    /* Cambia también el color del enlace */
}

#menu-toggle:checked+.menu-icon+.mobile-menu {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* General Styles for Navbar */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espacio entre el logo y el menú hamburguesa */
}

.logo img {
    height: 50px;
    /* Ajusta el tamaño del logo */
}

.hamburger {
    display: none;
    /* Oculta el menú hamburguesa en pantallas grandes */
}

.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #714444;
}

/* Call to Action Button */

.btn-cta {
    padding: 10px 15px;
    background-color: #6B8E23;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #5a7a1d;
}

/* Menú desplegable Call to Action Button*/
.contact-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.contact-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-weight: normal;
}

.contact-menu a:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 640px) {
    .cta {
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        font-size: 1.1rem;
        padding: 14px;
    }

    .contact-menu {
        position: static;
        width: 100%;
        border: 1px solid #ddd;
        box-shadow: none;
        margin-top: 5px;
    }

    .contact-menu a {
        font-size: 1rem;
        padding: 14px;
    }
}

/*Fin boton cta


/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #F5DEB3;
}

/* Responsive Design */
/* Muestra el menú hamburguesa en pantallas pequeñas */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;

    }

    #menu-toggle:checked~.mobile-menu {
        display: block;
    }
}

/*fin nvbar*/

.kit-regulariza {
    text-align: center;
    padding: 20px;
}

.titulo {
    color: #714444;
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitulo {
    color: #714444;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Responsive titulo*/
@media (max-width: 768px) {
    .titulo {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1.2rem;
    }
}


/*banner inicial*/

.feature-section {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 50px;
}

.image-container img {
    width: 4fr;
    height: auto;
}

.features {
    width: 50%;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 30px;
    color: #714444;
}

.features .icon {
    margin-right: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 100%;

}

@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
    }

    .image-container,
    .features {
        width: 100%;
    }

    .image-container img {
        width: 100%;
    }
}


/* Section: Que es el kit regulariza */

.aviso-wrapper {
    background-color: white;
    padding: 20px;
}

.aviso {
    background-color: #FFEB3B;
    font-size: 1.3rem;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.descripcion {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: #714444;
    font-weight: 500;
}

.content-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.text-container {
    flex: 1;
    font-size: 20px;
    color: #714444
}


.image-container {
    flex: 1;
    text-align: center;


}


.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 450px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);

}

/* Responsividad */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }

    .image-container {
        margin-top: 20px;
    }
}


/*tabla Kit regulariza */

.table-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.table-column {
    color: #714444 !important;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hover Effect */
.table-column:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.table-column h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: 8B4513;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.table-column ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

.table-column li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #714444;
}

@media (max-width: 768px) {
    .table-container {
        grid-template-columns: 1fr;
    }
}

/* Formulario de Contacto */

.contact-form-container {
    background: #f8e7c8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form-container:hover {
    transform: translateY(-10px) scale(1.05);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-form-container h2 {
    font-size: 50px;
    color: #FFEB3B;
    margin-bottom: 10px;
}

.contact-form-container p {
    font-size: 16px;
    color: #714444;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group input,
.form-group textarea {
    background-color: #ffffff;
    color: #333;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group label {
    font-size: 16px;
    color: #8B4513;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 14px;
    border: 2px solid #FFC107;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6B8E23;
}

.btn-submit {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #6B8E23;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #557C17;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 10px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .btn-submit {
        font-size: 14px;
    }
}

body {

    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;

}

.strength {
    background: #f8e7c8;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.strength img {
    width: 600px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;

}

.strength h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(70, 69, 69, 0.5);
}

.strength p {
    font-size: 1rem;
    color: #714444;
}

/* Hover Effect */
.strength:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/*Footer*/
.footer {
    color: #714444;
    background-color: #faf2e3;
    padding: 20px;
    text-align: center;
}

.footer a {
    font-size: medium;
    color: #D2691E;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3d570e;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}

/*banner video inicial */
/* Estiliza el video: establece el ancho y alto al 100% para cubrir toda la ventana */

.container {
    background: #f8e7c8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    width: 100%;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.video-container {
    width: 95%;
    max-width: 800px;
    margin: auto;
}

#myVideo {
    right: 0;
    bottom: 0;
    min-width: 95%;
    min-height: auto;
    border-radius: 10px;
}

.frase {
    flex: 1;
    min-width: 300px;
    font-size: 1.8rem;
    color: #714444;
    margin-bottom: 5px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;

    }
}


/* SECCIÓN 1 - SERVICIOS */

.fraseservicios {
    flex: 1;
    min-width: 300px;
    font-size: 1.8rem;
    color: #714444;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

.servicios-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.servicio {
    background: #faf2e3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.servicio:hover {
    transform: scale(1.05);
}

.servicio-icon {
    font-size: 40px;
    color: #714444;
    margin-bottom: 10px;
}

.servicio-titulo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.servicio-texto {
    font-size: 14px;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .servicios-container {
        flex-direction: column;
        align-items: center;
    }
}

/* SECCIÓN 3 - TESTIMONIOS */

.testimonios-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.testimonios-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonio {
    min-width: 100%;
    background: #faf2e3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonio p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonio strong {
    color: #557C17;
}

.boton-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #557C17;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.boton-nav:hover {
    background: #003366;
}

.prev {
    left: -30px;
}

.next {
    right: -30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}

/*pagina servicios*/

.timeline2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 10px auto;
    padding: 5px 0;
}

.timeline-circle2 {
    width: 3rem;
    height: 3rem;
    background-color: #a1c960;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 auto 10px;
    transition: transform 0.3s ease;
}

/* RESPONSIVE*/
@media (max-width: 768px) {
    .timeline2 {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        width: 100%;
        text-align: center;
        padding: 20px;
        position: relative;
    }

    .timeline-circle2 {
        position: relative;
        align-items: center;
    }

    .timeline-title,
    .timeline-text {
        text-align: center;
    }
}

/* pagina servicios */

.servicios-container2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.servicio-card {
    background: #faf2e3;
    border-radius: 10px;
    padding: 20px;
    gap: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.servicio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.servicio-icon {
    font-size: 40px;
    color: #557C17;
}

.servicio-titulo {
    font-size: 22px;
    font-weight: bold;
    color: #714444;
}

.servicio-texto {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.beneficios,
.incluye {
    background: #e6f7cb;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.beneficios h3,
.incluye h3 {
    font-size: 18px;
    font-weight: bold;
    color: #714444;
    margin-bottom: 5px;
}

.beneficios ul,
.incluye ul {
    list-style: none;
    padding: 0;
}

.beneficios li,
.incluye li {
    padding: 5px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.beneficios li::before,
.incluye li::before {
    content: "✔️";
    margin-right: 8px;
    color: #557C17;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .servicio-card {
        padding: 15px;
    }

    .servicio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .servicio-titulo {
        font-size: 20px;
    }

    .beneficios h3,
    .incluye h3 {
        font-size: 16px;
    }
}

/* pagina nosotros */

/*lista*/
.valores-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas */
    gap: 20px;
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.valor-card {
    background: #faf2e3;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid #557C17;
}

.valor-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.valor-icon {
    font-size: 40px;
    color: #557C17;
    margin-bottom: 10px;
}

.valor-titulo {
    font-size: 18px;
    font-weight: bold;
    color: #714444;
    margin-bottom: 10px;
}

.valor-texto {
    font-size: 14px;
    color: #333;
}

/* RESPONSIVE: En pantallas pequeñas, cambia a 1 columna */
@media (max-width: 768px) {
    .valores-container {
        grid-template-columns: 1fr;
    }
}

/* Section: METODOLOGÍA AKAFA - Update: Enero 2026 */

/* comportamiento logo luego de la palabra metodologia*/


.titulo-metodologia {
    text-align: center;
}

.titulo-inline {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #714444;
}

.logo-metodologia {
    height: 1em;
    width: auto;
    display: block;
}

/* -------------------------------
   CONTENEDOR GENERAL
-------------------------------- */

.metodologia-akafa {
    max-width: 1100px;
    margin: 80px auto;
}

/* -------------------------------
   DESKTOP FULL (>=1200px)
   Horizontal + hover
-------------------------------- */

.metodologia-linea {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.metodo-item {
    width: 20%;
    text-align: center;
    position: relative;
}

/* Head */
.metodo-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.check li::before,
.incluye li::before {
    content: "▪️";
    margin-right: 8px;
    color: #557C17;
}

/* Círculo */
.metodo-circulo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #faf2e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: filter .25s ease;
}


.metodo-circulo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}


/* Hover solo en desktop full */
@media (min-width: 1200px) {
    .metodo-item:hover .metodo-circulo img {
        filter: brightness(0) saturate(100%) invert(100%);
    }
}


/* Título */
.metodo-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: #714444;
    max-width: 160px;
    transform: translateY(-2px);
}

/* Contenido oculto por defecto */
.metodologia-akafa .metodo-contenido {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}



/* Hover SOLO en desktop full */
@media (min-width: 900px) {

    .metodologia-linea {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .metodo-item {
        width: 20%;
    }

    .metodologia-akafa .metodo-item:hover .metodo-circulo {
        background-color: #714444;
        box-shadow: 0 0 0 6px rgba(139, 74, 74, 0.25);
        transform: translateY(-4px);
        transition: transform 0.25s ease;
    }

    .metodologia-akafa .metodo-item:hover .metodo-contenido {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 12px;
    }

    .metodo-item:hover .metodo-circulo img {
        filter: brightness(0) saturate(100%) invert(100%);
    }
}

/* -------------------------------
   DESKTOP DIVIDIDO (900px–1199px)
   2 columnas, sin hover
-------------------------------- */

@media (max-width: 899px) and (min-width: 700px) {

    .metodologia-linea {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 40px;
        align-items: start;
    }

    .metodo-item {
        width: 100%;
    }

    .metodologia-akafa .metodo-contenido {
        max-height: none;
        opacity: 1;
        transform: none;
        transition: none;
        margin-top: 12px;
    }

    .metodologia-akafa .metodo-item:hover .metodo-circulo {
        background-color: #714444;
        box-shadow: 0 0 0 6px rgba(139, 74, 74, 0.25);
        transform: translateY(-4px);
        transition: transform 0.25s ease;
    }

    .metodo-item:hover .metodo-circulo img {
        filter: brightness(0) saturate(100%) invert(100%);
    }

}

@media (max-width: 699px) {

    .metodologia-linea {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .metodo-item {
        width: 100%;
        text-align: center;
    }

    .metodologia-akafa .metodo-item:hover .metodo-circulo {
        background-color: #714444;
        box-shadow: 0 0 0 6px rgba(139, 74, 74, 0.25);
        transform: translateY(-4px);
        transition: transform 0.25s ease;
    }

    .metodologia-akafa .metodo-contenido {
        max-height: none;
        opacity: 1;
        transform: none;
        transition: none;
        margin-top: 8px;
    }

    .metodo-item:hover .metodo-circulo img {
        filter: brightness(0) saturate(100%) invert(100%);
    }

}


/*    MOBILE (<=768px)   */

@media (max-width: 768px) {

    .metodologia-linea {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .metodo-item {
        width: 100%;
        text-align: center;
    }

    .metodo-head {
        flex-direction: column;
        gap: 12px;
    }

    .metodo-circulo {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
        box-shadow: none;
    }

    .metodo-titulo {
        transform: none;
        max-width: none;
    }

    .metodologia-akafa .metodo-contenido {
        max-height: none;
        opacity: 1;
        transform: none;
        transition: none;
        margin-top: 8px;
        text-align: center;
    }

    /* Título + logo en columna */
    .titulo-inline {
        flex-direction: column;
        gap: 8px;
    }

    .logo-metodologia {
        height: 1.4em;
    }
}

/* -------------------------------
   LISTAS
-------------------------------- */

.metodo-contenido ul {
    padding-left: 0;
    list-style: none;
}

.metodo-contenido li {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #333;
}