/* ===== Paleta oficial TGA ===== */
:root {
    --tga-kale: #2A3B22;
    --tga-brooooli: #677223;
    --tga-cucumber: #B3BD76;
    --tga-gris: #DDDDDD;
    --tga-butternut: #F4BA2C;
    --tga-carrot: #E65529;
    --tga-segundaria: #C2562F;

    --bs-primary: var(--tga-carrot);
    --bs-primary-rgb: 230, 85, 41;
}

/* ===== Base ===== */
body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #2c333e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Work Sans', 'Poppins', sans-serif;
    color: var(--tga-kale);
    letter-spacing: -0.01em;
}

a { text-decoration: none; }

.btn-primary {
    background-color: var(--tga-carrot);
    border-color: var(--tga-carrot);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--tga-segundaria);
    border-color: var(--tga-segundaria);
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    max-width: 42rem;
    margin: 0 auto 0.75rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
    transition: padding .2s ease, box-shadow .2s ease;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.navbar.scrolled {
    padding-top: .25rem;
    padding-bottom: .25rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.logo-img {
    height: 110px;
    width: auto;
    transition: height .2s ease;
}
.navbar.scrolled .logo-img { height: 72px; }
.navbar .nav-link {
    color: #2c333e;
    font-weight: 500;
    padding: .5rem 1rem !important;
}
.navbar .nav-link:hover { color: var(--tga-carrot); }
@media (max-width: 991px) {
    .logo-img, .navbar.scrolled .logo-img { height: 64px; }
}

/* ===== Hero ===== */
.hero-section {
    background: linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
    padding: 10rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.hero-title-wrap {
    position: relative;
    max-width: 850px;
    margin: 0 auto 1.5rem;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    position: relative;
    z-index: 2;
}
.hero-stroke {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(85%, 608px);
    height: auto;
    color: var(--tga-butternut);
    z-index: 1;
    margin-top: .5rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--tga-brooooli);
    max-width: 720px;
    margin: 0 auto 2rem;
}
.hero-parallax-wrapper {
    overflow: hidden;
    padding: 1rem 0;
}
.hero-parallax {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    aspect-ratio: 1440 / 720;
}
.hero-parallax .layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .15s ease-out;
}

/* ===== Perfiles ===== */
.perfil-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: all .2s ease;
    color: inherit;
    display: block;
}
.perfil-card:hover {
    transform: translateY(-4px);
    border-color: var(--tga-carrot);
    box-shadow: 0 12px 24px rgba(42,59,34,0.10);
    color: inherit;
}
.perfil-card .perfil-icon {
    width: 3.5rem; height: 3.5rem;
    margin: 0 auto .9rem;
    border-radius: 50%;
    background: rgba(230,85,41,0.10);
    display: flex; align-items: center; justify-content: center;
    color: var(--tga-carrot);
    transition: all .2s ease;
}
.perfil-card:hover .perfil-icon {
    background: var(--tga-carrot);
    color: #fff;
}
.perfil-card h3 {
    font-size: 1.05rem;
    margin-bottom: .35rem;
    font-weight: 600;
    color: var(--tga-kale);
}
.perfil-card p {
    font-size: .85rem;
    color: #6b7280;
    margin-bottom: 0;
}
.perfil-card .perfil-price {
    display: inline-block;
    margin-top: .75rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--tga-brooooli);
}

/* ===== Co-creado ===== */
.cocreado-wrap {
    background: linear-gradient(135deg, var(--tga-kale) 0%, #1c2916 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.cocreado-wrap::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(244,186,44,0.20) 0%, transparent 70%);
    pointer-events: none;
}
.cocreado-wrap::after {
    content: "";
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(230,85,41,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cocreado-tagline {
    color: var(--tga-butternut);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 1rem;
}
.cocreado-h2 {
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}
.cocreado-p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.cocreado-callout {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    border-radius: .75rem;
    background: rgba(244,186,44,0.12);
    border: 1px solid rgba(244,186,44,0.35);
    margin: 1rem 0;
}
.cocreado-callout strong {
    color: #fff;
    display: block;
    margin-bottom: .25rem;
}
.cocreado-callout span {
    color: #d1d5db;
    font-size: .9rem;
}
.cocreado-stamp {
    display: inline-block;
    margin-top: 1.5rem;
    padding: .35rem 1rem;
    border: 1px solid rgba(244,186,44,0.5);
    border-radius: 999px;
    color: var(--tga-butternut);
    font-size: .85rem;
    font-weight: 500;
}
.cocreado-pillar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    height: 100%;
}
.cocreado-pillar h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .35rem;
}
.cocreado-pillar p {
    color: #9ca3af;
    font-size: .9rem;
    margin-bottom: 0;
}
.cocreado-pillar .pillar-icon {
    width: 2.5rem; height: 2.5rem;
    background: rgba(244,186,44,0.15);
    color: var(--tga-butternut);
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .85rem;
}

/* ===== Acompañamiento ===== */
.acomp-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.07);
    transition: all .2s ease;
}
.acomp-card.acomp-highlight {
    border-color: var(--tga-carrot);
    box-shadow: 0 12px 32px rgba(230,85,41,0.18);
    position: relative;
}
.acomp-card .acomp-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .25rem .65rem;
    border-radius: 999px;
    margin-bottom: .85rem;
}
.acomp-card.acomp-incluido .acomp-tag {
    background: rgba(103,114,35,0.12);
    color: var(--tga-brooooli);
}
.acomp-card.acomp-highlight .acomp-tag {
    background: var(--tga-carrot);
    color: #fff;
}
.acomp-card.acomp-bolsa .acomp-tag {
    background: rgba(244,186,44,0.18);
    color: #a87c00;
}
.acomp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.acomp-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.acomp-card ul li {
    display: flex;
    align-items: flex-start;
    padding: .4rem 0;
    font-size: .92rem;
    color: #4b5563;
}
.acomp-card .check-icon {
    margin-right: .55rem;
    flex-shrink: 0;
    font-weight: bold;
    width: 1rem;
    text-align: center;
}
.acomp-card .acomp-foot {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: .85rem;
    color: #6b7280;
}

/* ===== Features ===== */
.feature-card {
    text-align: center;
    padding: 1rem;
}
.feature-card svg {
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.feature-card p {
    color: #6b7280;
    font-size: .95rem;
    margin-bottom: 0;
}

/* ===== Ecosistema ===== */
.badge-warning {
    display: inline-block;
    background: var(--tga-butternut);
    color: var(--tga-kale);
    font-weight: 600;
    font-size: .8rem;
    padding: .35rem .85rem;
    border-radius: 999px;
}
.ecosistema-wrap {
    background: linear-gradient(135deg, rgba(244,186,44,0.08) 0%, rgba(230,85,41,0.10) 100%);
    border: 1px solid rgba(230,85,41,0.15);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
}
.eco-step {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(42,59,34,0.06);
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}
.eco-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(42,59,34,0.10);
}
.eco-step .eco-num {
    width: 2.25rem; height: 2.25rem;
    border-radius: 50%;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto .75rem;
    font-size: .95rem;
}
.eco-step h4 {
    font-size: 1rem;
    margin-bottom: .35rem;
    font-weight: 600;
    color: var(--tga-kale);
}
.eco-step p {
    font-size: .85rem;
    color: #6b7280;
    margin-bottom: 0;
}
.eco-arrow {
    align-items: center;
    justify-content: center;
    color: var(--tga-carrot);
    font-size: 1.75rem;
    font-weight: bold;
}

/* ===== Testimonials ===== */
.highlight-experience {
    position: relative;
    display: inline-block;
    padding: 0 .25rem;
}
.highlight-experience::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0.1em;
    height: .45em;
    background: rgba(244,186,44,0.4);
    z-index: -1;
    border-radius: .25em;
}
.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}
@media (min-width: 992px) {
    .testimonial-controls { justify-content: flex-start; }
}
.testimonial-btn {
    width: 2.75rem; height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--tga-carrot);
    background: transparent;
    color: var(--tga-carrot);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-btn:hover {
    background: var(--tga-carrot);
    color: #fff;
}
.testimonials-count {
    font-weight: 600;
    color: #6b7280;
    min-width: 3rem;
    text-align: center;
}
.testimonials-swiper { padding: 1rem 0; }
.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-card {
    background: #f6f9fc;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    max-width: 90%;
}
.testimonial-card.t-right { align-self: flex-end; }
.testimonial-card.t-center { align-self: center; }
.testimonial-card p {
    font-size: 1.05rem;
    color: #2c333e;
    margin-bottom: .5rem;
}
.testimonial-card .t-author {
    font-weight: 700;
    color: var(--tga-kale);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--tga-kale) 0%, #1c2916 100%);
    padding: 5rem 0;
    margin-top: 3rem;
}
.cta-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-subtitle {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.cta-highlight {
    color: var(--tga-butternut);
    font-weight: 700;
}

/* ===== Footer ===== */
.site-footer {
    background: #fff;
    padding-top: 2rem;
}
.footer-heading {
    font-weight: 700;
    margin-bottom: .75rem;
}
.footer-email {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--tga-carrot);
}
.footer-email:hover { color: var(--tga-segundaria); }
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem; height: 2.25rem;
    border-radius: 50%;
    background: #f1f3f6;
    color: var(--tga-kale);
    margin-left: .5rem;
    transition: all .15s ease;
}
.social-btn:hover {
    background: var(--tga-carrot);
    color: #fff;
}

/* ===== Responsive helpers ===== */
@media (max-width: 767px) {
    .hero-section { padding-top: 7rem; }
    .cocreado-wrap { padding: 2rem 1.25rem; }
    .ecosistema-wrap { padding: 1.75rem 1rem; }
}
