/* =====================================================
   AMIKO
   Identidad visual
===================================================== */
:root {
    --amiko-green: #496653;
    --amiko-green-dark: #30483a;
    --amiko-green-light: #718878;
    --amiko-sand: #e9dfce;
    --amiko-cream: #f7f4ee;
    --amiko-brown: #634d3b;
    --amiko-dark: #26332c;
    --amiko-white: #ffffff;
    --amiko-radius: 18px;
    --amiko-transition: all 0.35s ease;
}
/* =====================================================
   GENERAL
===================================================== */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--amiko-dark);
    background: var(--amiko-cream);
    line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
}
/* =====================================================
   NAVBAR
===================================================== */
.amiko-navbar {
    padding: 20px 0;
    transition: var(--amiko-transition);
}
.amiko-logo {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--amiko-white) !important;
}
.amiko-navbar .nav-link {
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    margin-left: 15px;
    transition: var(--amiko-transition);
}
.amiko-navbar .nav-link:hover,
.amiko-navbar .nav-link.active {
    color: var(--amiko-white);
}
.amiko-navbar.scrolled {
    background: rgba(38, 51, 44, .96);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .12);
    padding: 12px 0;
}
/* =====================================================
   BUTTONS
===================================================== */
.btn-amiko {
    background: var(--amiko-green);
    color: var(--amiko-white);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    transition: var(--amiko-transition);
}
.btn-amiko:hover {
    background: var(--amiko-green-dark);
    color: var(--amiko-white);
    transform: translateY(-2px);
}
/* =====================================================
   MOBILE MENU BUTTON
===================================================== */
.amiko-navbar .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .45);
    padding: 8px 10px;
}
.amiko-navbar .navbar-toggler:focus {
    box-shadow: none;
}
.amiko-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
/* =====================================================
   HERO
===================================================== */
.amiko-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../images/hero/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}
.amiko-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(24, 38, 29, .85) 0%,
            rgba(24, 38, 29, .60) 45%,
            rgba(24, 38, 29, .15) 100%);
}
.amiko-eyebrow,
.section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.amiko-hero-title {
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 25px;
}
.amiko-hero-title span {
    display: block;
    color: var(--amiko-sand);
}
.amiko-hero-text {
    max-width: 650px;
    font-size: 1.15rem;
    margin-bottom: 35px;
}
.amiko-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    letter-spacing: 1px;
}
/* =====================================================
   SECTIONS
===================================================== */
.section-padding {
    padding: 100px 0;
}
.section-eyebrow {
    color: var(--amiko-green);
}
.section-title {
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    line-height: 1.15;
    margin-bottom: 25px;
}
.section-text {
    color: #667068;
    font-size: 1.05rem;
}
/* =====================================================
   FEATURE
===================================================== */
.amiko-feature-card {
    background: var(--amiko-green);
    color: white;
    border-radius: var(--amiko-radius);
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
}
.feature-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    font-size: 1.7rem;
    margin-bottom: 25px;
}
.amiko-feature-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}
/* =====================================================
   BENEFITS
===================================================== */
.amiko-benefits {
    background: white;
}
.benefit-card {
    height: 100%;
    padding: 35px 25px;
    border-radius: var(--amiko-radius);
    background: var(--amiko-cream);
    transition: var(--amiko-transition);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}
.benefit-card>i {
    font-size: 2.4rem;
    color: var(--amiko-green);
    display: block;
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 1.5rem;
}
/* =====================================================
   CTA
===================================================== */
.amiko-cta {
    padding: 110px 0;
    background:
        linear-gradient(135deg,
            var(--amiko-green-dark),
            var(--amiko-green));
    color: white;
}
.amiko-cta .section-eyebrow {
    color: var(--amiko-sand);
}
.amiko-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}
.amiko-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}
/* =====================================================
   FOOTER
===================================================== */
.amiko-footer {
    background: var(--amiko-dark);
    color: rgba(255, 255, 255, .75);
    padding: 70px 0 25px;
}
.amiko-footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.amiko-footer h5 {
    color: white;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: var(--amiko-transition);
}
.footer-links a:hover {
    color: white;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-navbar {
        background: rgba(38, 51, 44, .96);
    }
    .amiko-navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    .amiko-hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
}
@media (max-width: 576px) {
    .section-padding {
        padding: 70px 0;
    }
    .amiko-hero {
        background-position: 60% center;
    }
    .amiko-hero-text {
        font-size: 1rem;
    }
}
/* =====================================================
   HERO - MEJORADO
===================================================== */
.amiko-hero {
    overflow: hidden;
}
.amiko-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(15, 31, 21, .94) 0%,
            rgba(15, 31, 21, .78) 34%,
            rgba(15, 31, 21, .38) 65%,
            rgba(15, 31, 21, .08) 100%);
}
.amiko-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(125, 170, 116, .12);
    filter: blur(80px);
    right: 5%;
    top: 15%;
    pointer-events: none;
}
.amiko-hero-content {
    padding-top: 70px;
    animation: amikoHeroIn 1s ease forwards;
}
.amiko-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(112, 153, 100, .35);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(5px);
    font-size: .72rem;
    letter-spacing: 2px;
}
.eyebrow-line {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a7c89c;
}
.amiko-hero-title {
    margin-top: 25px;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    letter-spacing: -2px;
}
.amiko-hero-title span {
    color: #a8c99e;
}
.amiko-hero-text {
    max-width: 620px;
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
}
.amiko-btn-outline {
    border-width: 1px;
    border-color: rgba(255, 255, 255, .65);
    border-radius: 50px;
    padding-left: 28px;
    padding-right: 28px;
    transition: var(--amiko-transition);
}
.amiko-btn-outline:hover {
    background: white;
    color: var(--amiko-green-dark);
    border-color: white;
}
/* =====================================================
   HERO - TRUST
===================================================== */
.amiko-hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
}
.trust-avatars {
    display: flex;
}
.trust-avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--amiko-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    font-size: .65rem;
    font-weight: 700;
}
.trust-avatars span:first-child {
    margin-left: 0;
}
.amiko-hero-trust strong {
    display: block;
    font-size: .9rem;
}
.amiko-hero-trust small {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .75rem;
}
/* =====================================================
   HERO - SOCIAL
===================================================== */
.amiko-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.amiko-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--amiko-transition);
}
.amiko-social a:hover {
    background: white;
    color: var(--amiko-green-dark);
    transform: scale(1.1);
}
/* =====================================================
   SCROLL INDICATOR
===================================================== */
.amiko-scroll-indicator {
    color: white;
    text-decoration: none;
    bottom: 28px;
    transition: var(--amiko-transition);
}
.amiko-scroll-indicator i {
    font-size: 1.5rem;
    animation: amikoBounce 1.8s infinite;
}
.amiko-scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) translateY(-4px);
}
/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes amikoHeroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes amikoBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}
/* =====================================================
   MOBILE HERO
===================================================== */
@media (max-width: 991px) {
    .amiko-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(15, 31, 21, .90),
                rgba(15, 31, 21, .62));
    }
    .amiko-social {
        display: none;
    }
    .amiko-hero-content {
        padding-top: 100px;
    }
}
/* =====================================================
   AMIKO - LOGO REAL
===================================================== */
.amiko-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.amiko-logo-img {
    width: 190px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: var(--amiko-transition);
}
/* =====================================================
   LOGO CUANDO EL NAVBAR CAMBIA AL HACER SCROLL
===================================================== */
.amiko-navbar.scrolled .amiko-logo-img {
    width: 165px;
}
/* =====================================================
   LOGO RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-logo-img {
        width: 175px;
    }
}
@media (max-width: 576px) {
    .amiko-logo-img {
        width: 150px;
    }
}
@media (max-width: 576px) {
    .amiko-hero-title {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }
    .amiko-hero-text {
        font-size: 1rem;
    }
    .amiko-hero-trust {
        margin-top: 28px;
    }
}
.amiko-logo-img {
    width: 190px;
    height: auto;
    display: block;
}
@media (max-width: 576px) {
    .amiko-logo-img {
        width: 150px;
    }
}
/* =====================================================
   AMIKO - SECCIÓN "MUCHO MÁS QUE MONTAR A CABALLO"
===================================================== */
.amiko-about {
    position: relative;
    padding: 120px 0 100px;
    background: var(--amiko-cream);
    overflow: hidden;
}
/* =====================================================
   IMAGEN
===================================================== */
.amiko-about-image {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 20px 20px 0;
}
.amiko-about-image::after {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    right: 0;
    bottom: 0;
    border: 2px solid var(--amiko-green);
    border-radius: 24px;
    z-index: 0;
}
.amiko-about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 60px rgba(38, 51, 44, .16);
}
/* =====================================================
   TARJETA SOBRE LA IMAGEN
===================================================== */
.amiko-about-image-card {
    position: absolute;
    z-index: 3;
    left: -20px;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 22px;
    background: rgba(255, 255, 255, .95);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
    max-width: 310px;
}
.about-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amiko-green);
    color: white;
    font-size: 1.2rem;
}
.amiko-about-image-card strong {
    display: block;
    color: var(--amiko-dark);
    font-size: .88rem;
    line-height: 1.3;
}
.amiko-about-image-card small {
    display: block;
    color: #7a827c;
    font-size: .7rem;
    margin-top: 4px;
}
/* =====================================================
   NUMERO DECORATIVO
===================================================== */
.amiko-about-number {
    position: absolute;
    z-index: 4;
    right: 25px;
    top: 25px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amiko-green);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}
/* =====================================================
   CONTENIDO
===================================================== */
.amiko-about-content {
    padding-left: 35px;
}
.amiko-about-content .section-title {
    max-width: 570px;
}
.amiko-about-content .section-title span {
    display: block;
    color: var(--amiko-green);
}
.section-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--amiko-dark);
    max-width: 600px;
    margin-bottom: 22px;
}
.amiko-about-content .section-text {
    max-width: 600px;
    margin-bottom: 15px;
}
/* =====================================================
   ENLACE
===================================================== */
.amiko-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--amiko-green);
    font-weight: 700;
    text-decoration: none;
    transition: var(--amiko-transition);
}
.amiko-link i {
    transition: var(--amiko-transition);
}
.amiko-link:hover {
    color: var(--amiko-green-dark);
}
.amiko-link:hover i {
    transform: translateX(6px);
}
/* =====================================================
   INDICADORES
===================================================== */
.amiko-about-stats {
    margin-top: 90px;
    padding-top: 45px;
    border-top: 1px solid rgba(73, 102, 83, .18);
}
.about-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
}
.about-stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(73, 102, 83, .09);
    color: var(--amiko-green);
    font-size: 1.25rem;
}
.about-stat strong {
    display: block;
    color: var(--amiko-dark);
    font-size: .95rem;
}
.about-stat span {
    display: block;
    color: #7a827c;
    font-size: .75rem;
    margin-top: 2px;
}
/* =====================================================
   ANIMACIONES DE ENTRADA
===================================================== */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity .9s ease,
        transform .9s ease;
}
.reveal-left {
    transform: translateX(-50px);
}
.reveal-right {
    transform: translateX(50px);
}
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-about {
        padding: 90px 0 80px;
    }
    .amiko-about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .amiko-about-image {
        max-width: 650px;
    }
    .amiko-about-image img {
        height: 500px;
    }
    .amiko-about-stats {
        margin-top: 70px;
    }
    .about-stat {
        padding: 15px 5px;
    }
}
@media (max-width: 576px) {
    .amiko-about {
        padding: 70px 0;
    }
    .amiko-about-image {
        padding: 0 10px 10px 0;
    }
    .amiko-about-image img {
        height: 420px;
        border-radius: 18px;
    }
    .amiko-about-image::after {
        border-radius: 18px;
    }
    .amiko-about-image-card {
        left: 5px;
        bottom: 35px;
        padding: 12px 15px;
        max-width: 270px;
    }
    .about-card-icon {
        width: 42px;
        height: 42px;
    }
    .amiko-about-number {
        right: 15px;
        top: 15px;
        width: 48px;
        height: 48px;
    }
    .section-lead {
        font-size: 1.1rem;
    }
    .amiko-about-stats {
        margin-top: 50px;
        padding-top: 30px;
    }
    .about-stat {
        margin-bottom: 15px;
        padding: 5px 0;
    }
    .about-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}
/* =====================================================
   AMIKO - EL VÍNCULO QUE TRANSFORMA
===================================================== */
.amiko-pillars {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}
/* =====================================================
   DECORACIÓN DE FONDO
===================================================== */
.amiko-pillars::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(73, 102, 83, .045);
    top: -250px;
    right: -150px;
}
.amiko-pillars::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(233, 223, 206, .35);
    bottom: -150px;
    left: -100px;
}
/* =====================================================
   ENCABEZADO
===================================================== */
.amiko-section-heading {
    position: relative;
    z-index: 2;
}
.amiko-section-heading .section-title {
    margin-bottom: 20px;
}
.amiko-section-heading .section-title span {
    display: block;
    color: var(--amiko-green);
}
.section-description {
    max-width: 680px;
    margin: 0 auto;
    color: #707970;
    font-size: 1.05rem;
    line-height: 1.8;
}
/* =====================================================
   TARJETAS
===================================================== */
.amiko-pillar-card {
    position: relative;
    height: 100%;
    padding: 38px 30px 32px;
    border: 1px solid rgba(73, 102, 83, .12);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(38, 51, 44, .045);
    overflow: hidden;
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}
.amiko-pillar-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--amiko-green);
    transition: height .4s ease;
}
.amiko-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(38, 51, 44, .12);
    border-color: rgba(73, 102, 83, .25);
}
.amiko-pillar-card:hover::before {
    height: 100%;
}
/* =====================================================
   NUMERO
===================================================== */
.pillar-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: "Playfair Display", serif;
    font-size: .85rem;
    color: #a6aea8;
}
/* =====================================================
   ICONO
===================================================== */
.pillar-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(73, 102, 83, .08);
    color: var(--amiko-green);
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--amiko-transition);
}
.amiko-pillar-card:hover .pillar-icon {
    background: var(--amiko-green);
    color: white;
    transform: rotate(-5deg) scale(1.05);
}
/* =====================================================
   CATEGORÍA
===================================================== */
.pillar-category {
    display: block;
    color: var(--amiko-green);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
/* =====================================================
   TÍTULO
===================================================== */
.amiko-pillar-card h3 {
    font-size: 1.55rem;
    color: var(--amiko-dark);
    margin-bottom: 15px;
}
/* =====================================================
   TEXTO
===================================================== */
.amiko-pillar-card p {
    color: #747c76;
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 25px;
}
/* =====================================================
   LINK
===================================================== */
.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amiko-green);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--amiko-transition);
}
.pillar-link i {
    transition: var(--amiko-transition);
}
.pillar-link:hover {
    color: var(--amiko-green-dark);
}
.pillar-link:hover i {
    transform: translate(3px, -3px);
}
/* =====================================================
   FOOTER DE LA SECCIÓN
===================================================== */
.amiko-pillars-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 850px;
    margin: 70px auto 0;
    padding: 22px 28px;
    border-radius: 15px;
    background: var(--amiko-cream);
}
.pillars-footer-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amiko-green);
    color: white;
    font-size: 1.2rem;
}
.amiko-pillars-footer p {
    margin: 0;
    color: #687069;
    font-size: .9rem;
}
.amiko-pillars-footer strong {
    color: var(--amiko-dark);
}
/* =====================================================
   ANIMACIÓN
===================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Diferentes tiempos de entrada */
.amiko-pillar-card:nth-child(1) {
    transition-delay: .05s;
}
.amiko-pillar-card:nth-child(2) {
    transition-delay: .15s;
}
.amiko-pillar-card:nth-child(3) {
    transition-delay: .25s;
}
.amiko-pillar-card:nth-child(4) {
    transition-delay: .35s;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-pillars {
        padding: 90px 0;
    }
    .amiko-pillar-card {
        padding: 32px 27px;
    }
    .amiko-pillars-footer {
        margin-top: 55px;
    }
}
@media (max-width: 576px) {
    .amiko-pillars {
        padding: 70px 0;
    }
    .amiko-pillar-card {
        padding: 30px 25px;
    }
    .amiko-pillars-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }
}
/* =====================================================
   AMIKO - NUESTROS PROGRAMAS
===================================================== */
.amiko-programs {
    position: relative;
    padding: 120px 0;
    background: var(--amiko-dark);
    color: white;
    overflow: hidden;
}
/* Fondo decorativo */
.amiko-programs::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .05);
    right: -280px;
    top: -250px;
}
.amiko-programs::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(112, 153, 100, .06);
    left: -180px;
    bottom: -180px;
}
/* =====================================================
   ENCABEZADO
===================================================== */
.amiko-programs .section-title {
    color: white;
    margin-bottom: 0;
}
.amiko-programs .section-title span {
    color: #a8c99e;
}
.programs-intro {
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin: 0;
    max-width: 500px;
}
/* =====================================================
   TARJETAS
===================================================== */
.amiko-program-card {
    position: relative;
    min-height: 470px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    transition:
        transform .5s ease,
        box-shadow .5s ease;
}
/*
   Por ahora utilizamos hero.jpg como imagen provisional.
   Posteriormente cada programa tendrá su fotografía.
*/
.program-card-one {
    background-image: url("../images/programas/equitacion-infantil.jpg");
    background-position: center;
}
.program-card-two {
    background-image: url("../images/programas/equitacion-adaptada.jpg");
    background-position: center;
}
.program-card-three {
    background-image: url("../images/programas/equinoterapia.jpg");
    background-position: center;
}
.program-card-four {
    background-image: url("../images/programas/experiencias-amiko.jpg");
    background-position: center;
}
/* =====================================================
   OVERLAY
===================================================== */
.program-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg,
            rgba(15, 31, 21, .10) 10%,
            rgba(15, 31, 21, .30) 35%,
            rgba(15, 31, 21, .94) 100%);
    transition: background .5s ease;
}
.amiko-program-card:hover .program-overlay {
    background:
        linear-gradient(180deg,
            rgba(15, 31, 21, .15),
            rgba(15, 31, 21, .97));
}
/* =====================================================
   HOVER
===================================================== */
.amiko-program-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35);
}
/* =====================================================
   CONTENIDO
===================================================== */
.program-content {
    position: relative;
    width: 100%;
    padding: 35px;
    z-index: 2;
}
.program-number {
    position: absolute;
    right: 30px;
    top: 30px;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
}
.program-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    font-size: 1.3rem;
    margin-bottom: 22px;
    transition: var(--amiko-transition);
}
.amiko-program-card:hover .program-icon {
    background: #a8c99e;
    color: var(--amiko-dark);
    transform: scale(1.08);
}
/* =====================================================
   CATEGORÍA
===================================================== */
.program-category {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b5cda9;
    margin-bottom: 8px;
}
/* =====================================================
   TÍTULO
===================================================== */
.program-content h3 {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}
/* =====================================================
   DESCRIPCIÓN
===================================================== */
.program-content p {
    max-width: 570px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7;
    font-size: .9rem;
    margin-bottom: 22px;
}
/* =====================================================
   ENLACE
===================================================== */
.program-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    padding-bottom: 5px;
    transition: var(--amiko-transition);
}
.program-link i {
    transition: var(--amiko-transition);
}
.program-link:hover {
    color: #b5cda9;
    border-color: #b5cda9;
}
.program-link:hover i {
    transform: translateX(6px);
}
/* =====================================================
   MENSAJE INFERIOR
===================================================== */
.programs-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 55px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}
.programs-bottom-mark {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #a8c99e;
    color: var(--amiko-dark);
}
.programs-bottom strong {
    display: block;
    color: white;
    font-size: .9rem;
}
.programs-bottom p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
}
.programs-bottom .btn {
    margin-left: auto;
    flex-shrink: 0;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-programs {
        padding: 90px 0;
    }
    .amiko-program-card,
    .program-card-three,
    .program-card-four {
        min-height: 430px;
    }
    .programs-intro {
        margin-top: 20px;
    }
}
@media (max-width: 576px) {
    .amiko-programs {
        padding: 70px 0;
    }
    .amiko-program-card,
    .program-card-three,
    .program-card-four {
        min-height: 450px;
        border-radius: 18px;
    }
    .program-content {
        padding: 27px;
    }
    .program-content h3 {
        font-size: 2rem;
    }
    .programs-bottom {
        flex-wrap: wrap;
        padding: 22px;
    }
    .programs-bottom .btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}
/* =====================================================
   AMIKO - CÓMO TRABAJAMOS
===================================================== */
.amiko-process {
    position: relative;
    padding: 120px 0;
    background: var(--amiko-cream);
    overflow: hidden;
}
/* =====================================================
   CONTENEDOR DEL PROCESO
===================================================== */
.amiko-process-wrapper {
    position: relative;
    max-width: 900px;
    margin: 90px auto 0;
}
/* =====================================================
   LÍNEA CENTRAL DEL PROCESO
===================================================== */
.amiko-process-wrapper {
    position: relative;
    max-width: 900px;
    margin: 90px auto 0;
}
/* Línea que conecta todos los pasos */
.process-line {
    position: absolute;
    top: 25px;
    bottom: 105px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(73, 102, 83, .30) 5%,
            rgba(73, 102, 83, .30) 95%,
            transparent 100%);
    z-index: 1;
    transition: transform 1.5s ease;
}
.process-line.revealed {
    transform: translateX(-50%) scaleY(1);
}
/* =====================================================
   PASO
===================================================== */
.process-step {
    position: relative;
    width: 50%;
    padding: 0 70px 80px 0;
    text-align: right;
}
.process-step:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 80px 70px;
    text-align: left;
}
/* =====================================================
   NUMERO
===================================================== */
.process-step-number {
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amiko-green);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: .9rem;
    box-shadow:
        0 0 0 8px var(--amiko-cream),
        0 8px 25px rgba(38, 51, 44, .15);
    z-index: 5;
}
.process-step:nth-child(even) .process-step-number {
    left: -25px;
    right: auto;
}
/* =====================================================
   CONTENIDO
===================================================== */
.process-step-content {
    padding-top: 3px;
}
.process-step-label {
    display: block;
    color: var(--amiko-green);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.process-step h3 {
    color: var(--amiko-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 12px;
}
.process-step p {
    color: #707970;
    font-size: .88rem;
    line-height: 1.8;
    margin: 0;
}
/* =====================================================
   DECORACIÓN
===================================================== */
.process-step-content::after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 1px;
    background: rgba(73, 102, 83, .35);
    margin-top: 20px;
}
.process-step:nth-child(even) .process-step-content::after {
    display: block;
}
/* =====================================================
   FRASE FINAL
===================================================== */
.process-quote {
    max-width: 780px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(38, 51, 44, .07);
}
.process-quote-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amiko-green);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
}
.process-quote p {
    margin: 0;
    color: var(--amiko-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    line-height: 1.5;
}
.process-quote span {
    display: block;
    margin-top: 6px;
    color: var(--amiko-green);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 767px) {
    .amiko-process {
        padding: 80px 0;
    }
    .amiko-process-wrapper {
        margin-top: 60px;
        padding-left: 25px;
    }
    .process-line {
        left: 25px;
        top: 0;
        bottom: 40px;
        transform: translateX(-50%) scaleY(0);
    }
    .process-line.revealed {
        transform: translateX(-50%) scaleY(1);
    }
    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 55px 55px;
        text-align: left;
    }
    .process-step-number,
    .process-step:nth-child(even) .process-step-number {
        left: 0;
        right: auto;
        width: 50px;
        height: 50px;
    }
    .process-step-content::after,
    .process-step:nth-child(even) .process-step-content::after {
        display: block;
    }
    .process-quote {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        margin-top: 0;
    }
    .process-quote p {
        font-size: 1.05rem;
    }
}
/* =====================================================
   AMIKO - NUESTROS COMPAÑEROS
===================================================== */
.amiko-horses {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}
/* =====================================================
   ENCABEZADO
===================================================== */
.horses-intro {
    max-width: 500px;
    margin: 0;
    color: #707970;
    line-height: 1.8;
    font-size: .95rem;
}
/* =====================================================
   TARJETA DEL CABALLO
===================================================== */
.horse-card {
    height: 100%;
    background: var(--amiko-cream);
    border-radius: 22px;
    overflow: hidden;
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}
.horse-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(38, 51, 44, .12);
}
/* =====================================================
   IMAGEN
===================================================== */
.horse-image {
    position: relative;
    height: 390px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
/*
   Imágenes provisionales.
   Posteriormente colocaremos fotografías reales.
*/
.horse-image-one {
    background-image:
        url("../images/caballos/caballo-01.jpg");
}
.horse-image-two {
    background-image:
        url("../images/caballos/caballo-02.jpg");
}
.horse-image-three {
    background-image:
        url("../images/caballos/caballo-03.jpg");
}
.horse-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20, 35, 25, .05) 40%,
            rgba(20, 35, 25, .65) 100%);
}
/* =====================================================
   NUMERO
===================================================== */
.horse-number {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(8px);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: .85rem;
}
/* =====================================================
   ETIQUETA
===================================================== */
.horse-image-label {
    position: absolute;
    left: 25px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.horse-image-label i {
    font-size: .9rem;
}
/* =====================================================
   CONTENIDO
===================================================== */
.horse-content {
    padding: 30px;
}
.horse-category {
    display: block;
    color: var(--amiko-green);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}
.horse-content h3 {
    margin-bottom: 12px;
    color: var(--amiko-dark);
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}
.horse-content p {
    color: #707970;
    font-size: .87rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
/* =====================================================
   CARACTERÍSTICAS
===================================================== */
.horse-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.horse-traits span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(73, 102, 83, .08);
    color: var(--amiko-green);
    font-size: .68rem;
    font-weight: 600;
}
.horse-traits i {
    font-size: .75rem;
}
/* =====================================================
   MENSAJE
===================================================== */
.horses-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 750px;
    margin: 65px auto 0;
    text-align: center;
}
.horses-message>i {
    color: var(--amiko-green);
    font-size: 1.3rem;
}
.horses-message p {
    margin: 0;
    color: #6d766f;
    font-size: .88rem;
    line-height: 1.7;
}
.horses-message strong {
    color: var(--amiko-dark);
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-horses {
        padding: 90px 0;
    }
    .horse-image {
        height: 350px;
    }
}
@media (max-width: 576px) {
    .amiko-horses {
        padding: 70px 0;
    }
    .horse-image {
        height: 360px;
    }
    .horse-content {
        padding: 25px;
    }
    .horses-message {
        align-items: flex-start;
        text-align: left;
    }
}
/* =====================================================
   AMIKO - BENEFICIOS
===================================================== */
.amiko-benefits {
    position: relative;
    padding: 120px 0;
    background: var(--amiko-cream);
    overflow: hidden;
}
/* =====================================================
   INTRO
===================================================== */
.benefits-intro {
    max-width: 480px;
}
.benefits-intro .section-title {
    margin-bottom: 25px;
}
.benefits-intro .section-title span {
    color: var(--amiko-green);
}
.benefits-intro>p {
    color: #707970;
    font-size: .92rem;
    line-height: 1.85;
    margin-bottom: 15px;
}
.benefits-intro .btn {
    margin-top: 15px;
}
/* =====================================================
   GRID
===================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
/* =====================================================
   BENEFIT ITEM
===================================================== */
.benefit-item {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(73, 102, 83, .08);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}
.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 45px rgba(38, 51, 44, .09);
}
/* =====================================================
   NUMERO
===================================================== */
.benefit-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(73, 102, 83, .18);
    font-family: "Playfair Display", serif;
    font-size: .9rem;
}
/* =====================================================
   ICONO
===================================================== */
.benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(73, 102, 83, .08);
    color: var(--amiko-green);
    font-size: 1.15rem;
    transition: var(--amiko-transition);
}
.benefit-item:hover .benefit-icon {
    background: var(--amiko-green);
    color: white;
    transform: scale(1.08);
}
/* =====================================================
   CATEGORÍA
===================================================== */
.benefit-item>div:last-child>span {
    display: block;
    margin-bottom: 7px;
    color: var(--amiko-green);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
/* =====================================================
   TÍTULO
===================================================== */
.benefit-item h3 {
    margin-bottom: 10px;
    color: var(--amiko-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
}
/* =====================================================
   TEXTO
===================================================== */
.benefit-item p {
    margin: 0;
    color: #707970;
    font-size: .82rem;
    line-height: 1.75;
}
/* =====================================================
   NOTA
===================================================== */
.benefits-note {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 65px auto 0;
    padding: 20px 25px;
    border-left: 3px solid var(--amiko-green);
    background: rgba(255, 255, 255, .65);
}
.benefits-note>i {
    flex-shrink: 0;
    color: var(--amiko-green);
    font-size: 1.1rem;
}
.benefits-note p {
    margin: 0;
    color: #707970;
    font-size: .76rem;
    line-height: 1.7;
}
.benefits-note strong {
    color: var(--amiko-dark);
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-benefits {
        padding: 90px 0;
    }
    .benefits-intro {
        max-width: 650px;
    }
}
@media (max-width: 767px) {
    .amiko-benefits {
        padding: 75px 0;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-item {
        padding: 27px;
    }
    .benefits-note {
        align-items: flex-start;
        margin-top: 45px;
    }
}
/* =====================================================
   AMIKO - PROPUESTA DE ACOMPAÑAMIENTO
===================================================== */
.amiko-journey {
    position: relative;
    padding: 120px 0;
    background: var(--amiko-dark);
    color: white;
    overflow: hidden;
}
/* =====================================================
   DECORACIÓN
===================================================== */
.amiko-journey::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    right: -350px;
    top: -350px;
}
.amiko-journey::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 201, 158, .04);
    left: -220px;
    bottom: -220px;
}
/* =====================================================
   ENCABEZADO
===================================================== */
.amiko-journey .section-title {
    color: white;
}
.amiko-journey .section-title span {
    color: #a8c99e;
}
.amiko-journey .section-description {
    color: rgba(255, 255, 255, .65);
}
/* =====================================================
   TRACK
===================================================== */
.journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
}
/* Línea */
.journey-track::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: rgba(255, 255, 255, .15);
}
/* =====================================================
   ETAPA
===================================================== */
.journey-stage {
    position: relative;
    padding: 0 25px;
    z-index: 2;
}
.journey-stage:first-child {
    padding-left: 0;
}
.journey-stage:last-child {
    padding-right: 0;
}
/* =====================================================
   PARTE SUPERIOR
===================================================== */
.journey-stage-top {
    position: relative;
    height: 65px;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Número */
.journey-stage-number {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amiko-dark);
    border: 1px solid rgba(168, 201, 158, .55);
    color: #a8c99e;
    font-family: "Playfair Display", serif;
    font-size: .85rem;
}
/* Icono */
.journey-stage-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
}
/* =====================================================
   TEXTO
===================================================== */
.journey-stage-label {
    display: block;
    margin-top: 30px;
    margin-bottom: 8px;
    color: #a8c99e;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.journey-stage h3 {
    margin-bottom: 12px;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
}
.journey-stage p {
    color: rgba(255, 255, 255, .62);
    font-size: .8rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
/* =====================================================
   LISTA
===================================================== */
.journey-stage ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.journey-stage li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: .7rem;
}
.journey-stage li i {
    color: #a8c99e;
    margin-top: 2px;
}
/* =====================================================
   FRECUENCIA
===================================================== */
.journey-frequency {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 75px;
    padding: 30px 35px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035);
}
.journey-frequency-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #a8c99e;
    color: var(--amiko-dark);
    font-size: 1.2rem;
}
.journey-frequency-content {
    flex: 1;
}
.journey-frequency-content>span {
    display: block;
    margin-bottom: 5px;
    color: #a8c99e;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.journey-frequency-content h3 {
    margin: 0 0 5px;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
}
.journey-frequency-content p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
    line-height: 1.65;
    max-width: 700px;
}
.journey-frequency-badge {
    min-width: 120px;
    text-align: center;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}
.journey-frequency-badge strong {
    display: block;
    color: #a8c99e;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
}
.journey-frequency-badge span {
    color: rgba(255, 255, 255, .5);
    font-size: .62rem;
}
/* =====================================================
   DISCLAIMER
===================================================== */
.journey-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px auto 0;
    max-width: 900px;
}
.journey-disclaimer>i {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(168, 201, 158, .7);
}
.journey-disclaimer p {
    margin: 0;
    color: rgba(255, 255, 255, .4);
    font-size: .68rem;
    line-height: 1.7;
}
.journey-disclaimer strong {
    color: rgba(255, 255, 255, .65);
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-journey {
        padding: 90px 0;
    }
    .journey-track {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }
    .journey-track::before {
        display: none;
    }
    .journey-stage {
        padding: 0 20px !important;
    }
}
@media (max-width: 767px) {
    .amiko-journey {
        padding: 75px 0;
    }
    .journey-track {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 55px;
    }
    .journey-stage {
        padding: 0 !important;
    }
    .journey-stage-label {
        margin-top: 20px;
    }
    .journey-frequency {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
        margin-top: 55px;
    }
    .journey-frequency-content {
        width: calc(100% - 80px);
    }
    .journey-frequency-badge {
        width: 100%;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding: 20px 0 0;
    }
}
/* =====================================================
   AMIKO - FAQ
===================================================== */
.amiko-faq {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
}
/* =====================================================
   LISTA
===================================================== */
.amiko-faq-list {
    border-top: 1px solid rgba(73, 102, 83, .15);
}
/* =====================================================
   ITEM
===================================================== */
.faq-item {
    border-bottom: 1px solid rgba(73, 102, 83, .15);
}
/* =====================================================
   PREGUNTA
===================================================== */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 5px;
    border: 0;
    background: transparent;
    color: var(--amiko-dark);
    text-align: left;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color .3s ease;
}
.faq-question:hover {
    color: var(--amiko-green);
}
/* =====================================================
   ICONO
===================================================== */
.faq-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(73, 102, 83, .07);
    color: var(--amiko-green);
    font-size: .9rem;
    transition:
        transform .4s ease,
        background .3s ease;
}
/* =====================================================
   RESPUESTA
===================================================== */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition:
        grid-template-rows .45s ease;
}
.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 65px 0 5px;
    color: #707970;
    font-size: .84rem;
    line-height: 1.85;
    opacity: 0;
    transition:
        opacity .3s ease,
        padding .45s ease;
}
/* =====================================================
   ACTIVO
===================================================== */
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}
.faq-item.active .faq-answer p {
    padding-bottom: 27px;
    opacity: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--amiko-green);
    color: white;
}
/* =====================================================
   CTA
===================================================== */
.faq-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 55px;
}
.faq-bottom p {
    margin: 0;
    color: #7a817b;
    font-size: .82rem;
}
.faq-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--amiko-green);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(73, 102, 83, .35);
    padding-bottom: 4px;
    transition:
        gap .3s ease,
        border-color .3s ease;
}
.faq-bottom a:hover {
    gap: 14px;
    border-color: var(--amiko-green);
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 576px) {
    .amiko-faq {
        padding: 75px 0;
    }
    .faq-question {
        padding: 22px 2px;
        font-size: .88rem;
    }
    .faq-answer p {
        padding-left: 2px;
        padding-right: 35px;
        font-size: .8rem;
    }
    .faq-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
/* =====================================================
   AMIKO - CONTACTO
===================================================== */
.amiko-contact {
    position: relative;
    padding: 120px 0;
    background: #f8f7f2;
    overflow: hidden;
}
/* =====================================================
   INTRO
===================================================== */
.contact-intro {
    max-width: 500px;
}
.contact-intro .section-title {
    margin-bottom: 25px;
}
.contact-intro .section-title span {
    color: var(--amiko-green);
}
.contact-description {
    color: #707970;
    font-size: .9rem;
    line-height: 1.85;
    max-width: 470px;
}
/* =====================================================
   DETALLES DE CONTACTO
===================================================== */
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}
.contact-detail-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(73, 102, 83, .08);
    color: var(--amiko-green);
    font-size: 1rem;
}
.contact-detail span {
    display: block;
    margin-bottom: 3px;
    color: var(--amiko-green);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.contact-detail h3 {
    margin: 0 0 3px;
    color: var(--amiko-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
}
.contact-detail p {
    margin: 0;
    color: #7b827c;
    font-size: .72rem;
    line-height: 1.5;
}
/* =====================================================
   FORMULARIO
===================================================== */
.contact-form-card {
    height: 100%;
    padding: 45px;
    background: white;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(38, 51, 44, .08);
}
.contact-form-heading {
    margin-bottom: 30px;
}
.contact-form-heading>span {
    display: block;
    margin-bottom: 7px;
    color: var(--amiko-green);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.contact-form-heading h3 {
    margin-bottom: 8px;
    color: var(--amiko-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
}
.contact-form-heading p {
    margin: 0;
    color: #7a817b;
    font-size: .78rem;
}
/* =====================================================
   CAMPOS
===================================================== */
.contact-form-card label {
    display: block;
    margin-bottom: 7px;
    color: var(--amiko-dark);
    font-size: .7rem;
    font-weight: 600;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 48px;
    padding: 12px 15px;
    border: 1px solid #e0e4df;
    border-radius: 10px;
    background: #fafbf9;
    color: var(--amiko-dark);
    font-size: .78rem;
    box-shadow: none;
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}
.contact-form-card textarea.form-control {
    min-height: 125px;
    resize: vertical;
}
.contact-form-card .form-control::placeholder {
    color: #a4aaa5;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--amiko-green);
    background: white;
    box-shadow:
        0 0 0 3px rgba(73, 102, 83, .08);
}
/* =====================================================
   PRIVACIDAD
===================================================== */
.contact-privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.contact-privacy input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--amiko-green);
}
.contact-privacy label {
    margin: 0;
    color: #858c86;
    font-size: .65rem;
    line-height: 1.5;
    font-weight: 400;
}
/* =====================================================
   BOTÓN
===================================================== */
.contact-submit {
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .amiko-contact {
        padding: 90px 0;
    }
    .contact-form-card {
        padding: 35px;
    }
}
@media (max-width: 576px) {
    .amiko-contact {
        padding: 75px 0;
    }
    .contact-form-card {
        padding: 25px;
        border-radius: 18px;
    }
    .contact-form-heading h3 {
        font-size: 1.6rem;
    }
}
/* =====================================================
   AMIKO - CTA FINAL
===================================================== */
.amiko-final-cta {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--amiko-dark);
}
/* =====================================================
   BACKGROUND
===================================================== */
.final-cta-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(30, 45, 35, .94) 0%,
            rgba(30, 45, 35, .82) 38%,
            rgba(30, 45, 35, .45) 72%,
            rgba(30, 45, 35, .35) 100%),
        url("../images/cta/final-cta.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
/* =====================================================
   DECORACIÓN
===================================================== */
.amiko-final-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    left: -250px;
    top: -180px;
}
/* =====================================================
   CONTENIDO
===================================================== */
.final-cta-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: left;
}
.final-cta-content .section-eyebrow {
    color: #a8c99e;
    font-size: .62rem;
    letter-spacing: 3px;
}
.final-cta-content h2 {
    margin: 20px 0;
    max-width: 650px;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.5px;
}
.final-cta-content h2 span {
    display: block;
    color: #a8c99e;
    font-style: italic;
}
.final-cta-content p {
    max-width: 430px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    line-height: 1.7;
}
/* =====================================================
   BOTÓN
===================================================== */
.btn-final-cta {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--amiko-dark);
    border: 1px solid white;
    padding: 14px 25px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}
.btn-final-cta:hover {
    background: #a8c99e;
    border-color: #a8c99e;
    color: var(--amiko-dark);
    transform: translateY(-3px);
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 767px) {
    .amiko-final-cta {
        min-height: 560px;
    }
    .final-cta-background {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(90deg,
                rgba(25, 40, 31, .96) 0%,
                rgba(25, 40, 31, .88) 28%,
                rgba(25, 40, 31, .58) 52%,
                rgba(25, 40, 31, .20) 78%,
                rgba(25, 40, 31, .12) 100%),
            url("../images/cta/final-cta.jpg");
        background-size: cover;
        background-position: center;
        transform: scale(1.02);
    }
    .final-cta-content {
        padding: 60px 20px;
    }
    .final-cta-content h2 {
        font-size: 2.7rem;
    }
    .final-cta-content {
        text-align: center;
    }
    .final-cta-content h2 {
        font-size: 2.7rem;
        letter-spacing: -1px;
    }
    .final-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .final-cta-background {
        background-position: 68% center;
    }
}
/* =====================================================
   AMIKO - FOOTER
===================================================== */
.amiko-footer {
    padding: 75px 0 25px;
    background: #202b24;
    color: white;
}
/* =====================================================
   MARCA
===================================================== */
.footer-brand img {
    width: 125px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    max-width: 310px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
    line-height: 1.8;
}
/* =====================================================
   SOCIAL
===================================================== */
.footer-social {
    display: flex;
    gap: 9px;
}
.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .8rem;
    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}
.footer-social a:hover {
    background: #a8c99e;
    border-color: #a8c99e;
    color: #202b24;
}
/* =====================================================
   COLUMNAS
===================================================== */
.footer-column h4 {
    margin-bottom: 22px;
    color: #a8c99e;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-column li {
    margin-bottom: 11px;
}
.footer-column li a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-size: .73rem;
    transition:
        color .3s ease,
        padding-left .3s ease;
}
.footer-column li a:hover {
    color: white;
    padding-left: 4px;
}
/* =====================================================
   CONTACTO
===================================================== */
.footer-contact>a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-size: .73rem;
    transition: color .3s ease;
}
.footer-contact>a:hover {
    color: white;
}
.footer-contact i {
    color: #a8c99e;
    margin-top: 2px;
}
/* =====================================================
   FOOTER BOTTOM
===================================================== */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .35);
    font-size: .62rem;
}
.footer-bottom div {
    display: flex;
    gap: 20px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .62rem;
    transition: color .3s ease;
}
.footer-bottom a:hover {
    color: white;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 767px) {
    .amiko-footer {
        padding-top: 60px;
    }
    .footer-brand {
        margin-bottom: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
    }
    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }
}
/* =====================================================
   BACK TO TOP - AMIKO
===================================================== */

.back-to-top {

    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 9999;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(32, 43, 36, 0.88);

    color: #ffffff;

    font-size: 16px;

    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        background 0.3s ease,
        border-color 0.3s ease;

}


/* =====================================================
   BOTÓN VISIBLE
===================================================== */

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =====================================================
   HOVER
===================================================== */

.back-to-top:hover {

    background: #a8c99e;

    border-color: #a8c99e;

    color: #202b24;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22);

}


/* =====================================================
   ICONO
===================================================== */

.back-to-top i {

    display: block;

    transition:
        transform 0.3s ease;

}


.back-to-top:hover i {

    transform: translateY(-2px);

}


/* =====================================================
   FOCUS / ACCESIBILIDAD
===================================================== */

.back-to-top:focus {

    outline: none;

}


.back-to-top:focus-visible {

    outline: 2px solid #a8c99e;

    outline-offset: 4px;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .back-to-top {

        right: 18px;

        bottom: 18px;

        width: 42px;

        height: 42px;

        font-size: 14px;

    }

}