/* =========================
   GENERAL & VARIABLES (Manual de Identidad V1.0)
   ========================= */

:root {
    /* Paleta Corporativa Oficial */
    --agt-blue: #0E2A3A;
    /* Azul Profundo */
    --agt-ink: #07131A;
    /* Azul Tinta */
    --agt-graphite: #1D2329;
    /* Gris Grafito */
    --agt-white: #F6F4EF;
    /* Blanco Cálido */
    --agt-green: #1B6B5C;
    /* Verde Institucional */
    --agt-steel: #6D7A86;
    /* Gris Acero */
    --agt-bg-light: #FAF9F6;
    /* UI & Superficies */
    --agt-bg: #F6F4EF;
    --agt-surface: #FFFFFF;
    --agt-muted: #F3F5F7;
    --agt-border: rgba(14, 42, 58, 0.08);
    /* Basado en Azul Profundo */

    /* Tipografía */
    --agt-font-ui: "DM Sans", system-ui, -apple-system, sans-serif;
    --agt-font-display: "Anton", system-ui, sans-serif;

    /* Layout & Sombras */
    --agt-radius: 1.2rem;
    --agt-radius-lg: 1.5rem;

    --agt-shadow-sm: 0 4px 12px rgba(14, 42, 58, 0.04);
    --agt-shadow: 0 10px 32px -4px rgba(14, 42, 58, 0.08), 0 6px 14px -6px rgba(14, 42, 58, 0.12);
    --agt-shadow-hover: 0 20px 40px -8px rgba(14, 42, 58, 0.12), 0 8px 16px -6px rgba(14, 42, 58, 0.08);

    --agt-transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --agt-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.agt-body {
    position: relative;
    font-family: var(--agt-font-ui);
    color: var(--agt-graphite);
    background: var(--agt-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Lienzo Continuo (Aurora) */
body.agt-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180vh;
    background:
        radial-gradient(circle at 15% 30vh, rgba(109, 122, 134, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 60vh, rgba(27, 107, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 120vh, rgba(14, 42, 58, 0.05) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Isotipo α como fondo — reemplaza la cuadrícula */
body.agt-body::after {
    content: "";
    position: fixed;
    top: 65%;
    right: -10%;
    transform: translateY(-50%);
    width: 180vw;
    height: 180vw;
    max-width: 1400px;
    max-height: 1400px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1128.19 802.51'%3E%3Cpath fill='%230E2A3A' d='M1128.19,802.51l-31.25-.52c-106.61,0-199.52-58.48-250.82-149.85l-92.7-154.11-112.36-200.11c-48.89-83.41-127.37-147.59-230.89-147.57-140.5.05-256.37,116.02-256.49,253.36-.13,137.49,115.76,247.85,256.49,247.9,96.37.03,181.45-49.3,228.71-123.4l37.74-56.84,76.8,152.27c-73.25,110.93-199.36,178.24-343.3,178.21C185.04,801.78-.2,623.5,0,403.59.21,183.91,185.37.18,410.12.13c174.89-.05,313.12,111.49,386.04,261.08L948.33,0h179.58l-246.27,413.56,246.54,388.95Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.035;
    pointer-events: none;
    z-index: -1;
    animation: agt-iso-breathe 10s ease-in-out infinite;
}

@keyframes agt-iso-breathe {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.agt-body::after {
        animation: none;
    }
}

/* Tipografía de sistema */
.agt-brandname {
    font-family: var(--agt-font-display);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--agt-blue);
}

.agt-kicker {
    color: var(--agt-green);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.agt-h1 {
    font-family: var(--agt-font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.5px;
    color: var(--agt-blue);
    margin: 0;
}

.agt-h2 {
    font-family: var(--agt-font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: 0.5px;
    color: var(--agt-blue);
    margin: 0;
}

.agt-lead {
    color: var(--agt-steel);
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
}

.agt-text {
    color: var(--agt-graphite);
    line-height: 1.65;

}

.agt-sla {
    color: var(--agt-steel);
    font-size: 0.9rem;
    font-weight: 500;
}

.agt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--agt-blue);
    text-decoration: none;
    font-weight: 700;
    transition: var(--agt-transition-smooth);
}

.agt-link:hover {
    color: var(--agt-green);
    transform: translateX(4px);
}

/* =========================
   TOPBAR & NAVBAR
   ========================= */
.agt-topbar {
    background: var(--agt-blue);
    color: rgba(246, 244, 239, 0.85);
    /* Blanco Cálido opacity */
    border-bottom: none !important;
}

.agt-toplink {
    color: rgba(246, 244, 239, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--agt-transition-smooth);
}

.agt-toplink i {
    color: var(--agt-green);
}

.agt-toplink:hover {
    color: #FFFFFF;
    opacity: 1;
}

.agt-navbar {
    background: rgba(246, 244, 239, 0.65) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(14, 42, 58, 0.05) !important;
    box-shadow: 0 4px 24px rgba(14, 42, 58, 0.02);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: var(--agt-transition-smooth);
}

.navbar .nav-link {
    color: var(--agt-steel);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--agt-transition-smooth);
}

.navbar .nav-link:hover {
    color: var(--agt-blue);
    background: rgba(14, 42, 58, 0.03);
}

.navbar .nav-link.active {
    color: var(--agt-blue);
    font-weight: 700;
}

/* Botones */
.btn {
    font-family: var(--agt-font-ui);
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 0.75rem 1.5rem;
    transition: var(--agt-transition-smooth);
}

.agt-btn-primary {
    background: var(--agt-blue);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    box-shadow: var(--agt-shadow-sm);
}

.agt-btn-primary:hover {
    background: var(--agt-ink);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--agt-shadow-hover);
}

.agt-btn-ghost {
    background: transparent;
    color: var(--agt-blue);
    border: 1px solid var(--agt-border);
    border-radius: 8px;
}

.agt-btn-ghost:hover {
    background: rgba(14, 42, 58, 0.04);
    border-color: rgba(14, 42, 58, 0.2);
    color: var(--agt-blue);
    transform: translateY(-2px);
}

/* =========================
   HERO SECTION
   ========================= */
.agt-hero {
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    max-height: 85vh;
    display: flex;
    align-items: center;
    background: transparent;
}

/* Textura granulada sutil */
.agt-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("imagenes/noise.png") repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.agt-hero>.container {
    position: relative;
    z-index: 1;
}

.agt-hero-media {
    border: 1px solid var(--agt-border) !important;
    border-radius: var(--agt-radius-lg);
    box-shadow: var(--agt-shadow);
    transform: translateY(0);
    transition: var(--agt-transition-bounce);
    background: var(--agt-surface);
}

.agt-hero-media:hover {
    transform: translateY(-6px);
    box-shadow: var(--agt-shadow-hover);
}

.agt-hero-media img {
    border-radius: calc(var(--agt-radius-lg) - 1px);
}

/* =========================
   PROBLEMAS
   ========================= */
#agt-problemas {
    position: relative;
    min-height: 80vh;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    background: #FAFAF7;
    z-index: 1;
    border-top: 2px solid white;
    box-shadow: 0 -12px 32px rgba(14, 42, 58, 0.04);
}

@media (min-width: 992px) {
    #agt-problemas {
        position: sticky;
        top: 0;
    }
}

#agt-problemas::after {
    content: "";
    position: absolute;
    bottom: -3rem;
    left: 0;
    width: 100%;
    height: 3rem;
    background: linear-gradient(to bottom, #FAFAF7 0%, var(--agt-bg) 100%);
    pointer-events: none;
    z-index: 0;
}

#agt-problemas>.container {
    position: relative;
    z-index: 1;
}

#agt-problemas .agt-panel {
    background: var(--agt-bg);
    border: 1px solid rgba(14, 42, 58, 0.06) !important;
    box-shadow: var(--agt-shadow-sm);
    border-radius: var(--agt-radius-lg);
}

#agt-problemas-title h2 {
    font-size: 4rem;
}

#agt-problemas-title p {
    font-size: 1.5rem;
}

/* =========================
   TARJETAS (Solo elevación y acento en ícono, sin cambios de color de fondo)
   ========================= */
.agt-card {
    background: var(--agt-surface) !important;
    border: 1px solid var(--agt-border) !important;
    border-radius: var(--agt-radius-lg);
    box-shadow: 0 4px 12px rgba(14, 42, 58, 0.02);
    transition: all 0.3s ease !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Tipografía de la tarjeta */
.agt-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--agt-blue) !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
    padding-bottom: 0;
}

.agt-text {
    color: var(--agt-graphite) !important;
}

/* Contenedor de Ícono Premium */
.agt-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(27, 107, 92, 0.08) !important;
    /* Verde RGB tenue */
    color: var(--agt-green) !important;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: all 0.3s ease !important;
}

/* HOVER: Solo elevación (translación Y) y sombra sutil */
.agt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--agt-shadow-hover) !important;
    border-color: rgba(14, 42, 58, 0.15) !important;
}

/* HOVER: El ícono se enciende (Único cambio de color) */
.agt-card:hover .agt-card-icon {
    background: var(--agt-green) !important;
    color: var(--agt-white) !important;
    transform: scale(1.05);
}

/* =========================
   CARDS CON IMAGEN (Escenarios)
   ========================= */
.agt-card-img {
    padding: 0 !important;
}

.agt-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.agt-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.25) contrast(0.85) brightness(1.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Capa de tinte Blanco Cálido */
.agt-card-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(246, 244, 239, 0.15);
    mix-blend-mode: overlay;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Hover: la imagen recupera un poco de saturación y hace zoom sutil */
.agt-card-img:hover .agt-card-img-wrap img {
    filter: saturate(0.45) contrast(0.9) brightness(1.04);
    transform: scale(1.04);
}

.agt-card-img:hover .agt-card-img-wrap::after {
    opacity: 0.6;
}

/* =========================
   METODOLOGÍA (Focus Dimming Premium)
   ========================= */
.agt-process-track {
    background: var(--agt-surface);
    border: 1px solid var(--agt-border);
    border-radius: var(--agt-radius-lg);
    box-shadow: var(--agt-shadow-sm);
    overflow: hidden;
    transition: var(--agt-transition-smooth);
}

.agt-process-step {
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    border-right: 1px solid var(--agt-border);
}

@media (max-width: 991.98px) {
    .agt-process-step {
        border-right: none;
        border-bottom: 1px solid var(--agt-border);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .agt-process-step:nth-child(even) {
        border-right: none;
    }

    .agt-process-step:nth-child(odd) {
        border-right: 1px solid var(--agt-border);
    }

    .agt-process-step:nth-child(3),
    .agt-process-step:nth-child(4) {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .agt-process-step:last-child {
        border-right: none;
    }
}

/* Micro-interacción: Focus Dimming */
.agt-process-track:hover .agt-process-step {
    opacity: 0.4;
    filter: grayscale(80%);
}

.agt-process-track .agt-process-step:hover {
    opacity: 1;
    filter: grayscale(0%);
    background: rgba(14, 42, 58, 0.02);
}

.agt-step-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.agt-step-dot {
    width: 14px;
    height: 14px;
    background: var(--agt-steel);
    border-radius: 50%;
    transition: var(--agt-transition-smooth);
    position: relative;
    z-index: 2;
}

/* Acento Verde Institucional en el nodo activo */
.agt-process-step:hover .agt-step-dot {
    background: var(--agt-green);
    box-shadow: 0 0 0 6px rgba(27, 107, 92, 0.15);
}

.agt-step-line {
    flex-grow: 1;
    height: 1px;
    background: var(--agt-border);
    margin-left: 1.5rem;
}

.agt-process-step .agt-step {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--agt-steel);
    transition: color 0.3s ease;
}

/* Acento Verde Institucional en el título del paso activo */
.agt-process-step:hover .agt-step {
    color: var(--agt-green);
}

/* =========================
   ENTREGABLES (Acordeón editorial)
   ========================= */
.agt-acc-stack {
    border-top: 2px solid var(--agt-blue);
}

.agt-acc-item {
    border-bottom: 1px solid rgba(14, 42, 58, 0.08);
    overflow: hidden;
}

.agt-acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.agt-acc-trigger:hover {
    padding-left: 0.75rem;
}

.agt-acc-trigger-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agt-acc-num {
    font-family: var(--agt-font-display);
    font-size: 0.95rem;
    color: var(--agt-steel);
    min-width: 28px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.agt-acc-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--agt-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.agt-acc-trigger:hover .agt-acc-title,
.agt-acc-trigger:hover .agt-acc-num {
    color: var(--agt-green);
}

.agt-acc-chevron {
    font-size: 1.1rem;
    color: var(--agt-steel);
    transition: transform 0.3s ease;
}

.agt-acc-item.open .agt-acc-chevron {
    transform: rotate(180deg);
}

.agt-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.agt-acc-item.open .agt-acc-body {
    max-height: 600px;
}

.agt-acc-body-inner {
    padding: 0 0 1.5rem 2.75rem;
    color: var(--agt-graphite);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================
   FAQ (Cards elevación + reveal)
   ========================= */
.agt-faq-header {
    margin-bottom: 3rem;
}

.agt-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .agt-faq-grid {
        grid-template-columns: 1fr;
    }
}

.agt-faq-card {
    position: relative;
    min-height: 190px;
    border-radius: var(--agt-radius-lg);
    cursor: pointer;
    overflow: hidden;
    background: var(--agt-surface);
    border: 1px solid rgba(14, 42, 58, 0.06);
    box-shadow: 0 4px 12px rgba(14, 42, 58, 0.03);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s ease,
        border-color 0.4s ease;
}

.agt-faq-card.active {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 42, 58, 0.12), 0 8px 16px rgba(14, 42, 58, 0.06);
    background: var(--agt-blue);
    border-color: transparent;
}

.agt-faq-card:not(.active):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 42, 58, 0.07);
    border-color: rgba(14, 42, 58, 0.1);
}

/* Capa frontal */
.agt-faq-front {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.agt-faq-card.active .agt-faq-front {
    opacity: 0;
    pointer-events: none;
}

.agt-faq-num {
    font-family: var(--agt-font-display);
    color: var(--agt-green);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.agt-faq-question {
    font-weight: 700;
    color: var(--agt-blue);
    font-size: 1.05rem;
    line-height: 1.4;
}

.agt-faq-hint {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: var(--agt-steel);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Capa trasera */
.agt-faq-back {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.35s ease 0.05s,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    z-index: 1;
}

.agt-faq-card.active .agt-faq-back {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.agt-faq-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--agt-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.agt-faq-answer {
    color: rgba(246, 244, 239, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.agt-faq-close {
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(246, 244, 239, 0.5);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* =========================
   CTA FINAL (Card flotante premium)
   ========================= */
.agt-cta-section {
    background: var(--agt-bg);
    position: relative;
    z-index: 2;
}

.agt-cta-card {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: var(--agt-blue);
    border-radius: var(--agt-radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow:
        0 24px 64px rgba(14, 42, 58, 0.2),
        0 8px 20px rgba(14, 42, 58, 0.1);
}

/* Acentos laterales verdes */
.agt-cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--agt-green), transparent);
    border-radius: 4px 0 0 4px;
}

.agt-cta-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--agt-green));
    border-radius: 0 4px 4px 0;
}

/* Patrón de puntos sutil */
.agt-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle, rgba(246, 244, 239, 0.8) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.agt-cta-content {
    position: relative;
    z-index: 1;
}

.agt-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(27, 107, 92, 0.15);
    color: var(--agt-green);
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.agt-cta-h2 {
    font-family: var(--agt-font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    color: var(--agt-white);
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.agt-cta-text {
    color: rgba(246, 244, 239, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.agt-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.agt-cta-btn-primary,
.agt-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--agt-font-ui);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.agt-cta-btn-primary {
    background: var(--agt-green);
    color: white;
}

.agt-cta-btn-primary:hover {
    background: #1a7d6b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 107, 92, 0.3);
}

.agt-cta-btn-ghost {
    background: transparent;
    color: var(--agt-white);
    border: 1px solid rgba(246, 244, 239, 0.2);
}

.agt-cta-btn-ghost:hover {
    background: rgba(246, 244, 239, 0.08);
    border-color: rgba(246, 244, 239, 0.35);
    color: var(--agt-white);
    transform: translateY(-3px);
}

.agt-cta-sla {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: rgba(246, 244, 239, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
}

/* =========================
   FOOTER (index.html)
   ========================= */
.agt-footer {
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.agt-footer-title {
    font-weight: 700;
    color: var(--agt-graphite);
}

.agt-footer-link {
    color: var(--agt-steel);
    text-decoration: none;
}

.agt-footer-link:hover {
    color: var(--agt-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.agt-footnote {
    color: var(--agt-steel);
    font-size: .92rem;
}

/* =========================
   UTILIDADES RESPONSIVAS
   ========================= */
@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .agt-hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .agt-hero>.container {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    #agt-problemas-title h2 {
        font-size: 2rem;
    }

    /* Isotipo más chico y menos visible en móvil */
    body.agt-body::after {
        width: 250vw;
        height: 250vw;
        right: -60%;
        top: 60%;
        opacity: 0.2;
    }

    .agt-cta-card {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {

    /* Tablet: isotipo intermedio */
    body.agt-body::after {
        width: 180vw;
        height: 180vw;
        right: -60%;
        top: 70%;
        opacity: 0.15;
    }
}

/* =========================
   RITMO VISUAL (Intercalado Suave sin cortes)
   ========================= */

.agt-section {
    background-color: var(--agt-bg);
    position: relative;
    z-index: 2;
}

.agt-section-muted {
    background: #FAFAF7 !important;
    border: none !important;
    border-top: 1px solid rgba(14, 42, 58, 0.06) !important;
    border-bottom: 1px solid rgba(14, 42, 58, 0.06) !important;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    position: relative;
    z-index: 2;
}

.agt-section-muted .agt-card,
.agt-section-muted .agt-process-track {
    background: var(--agt-bg) !important;
    border-color: rgba(14, 42, 58, 0.04) !important;
}