/* ==========================================================================
   Gasomarshal · Partner Oficial de Odoo Enterprise
   Hoja de estilos exclusiva para partner-odoo.html
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables locales (no se exponen al resto del sitio)
   -------------------------------------------------------------------------- */
.po-page {
    --po-green:        #82b71d;
    --po-green-dark:   #5a8a2a;
    --po-green-darker: #3f6a1c;
    --po-green-soft:   #f7faf0;
    --po-green-tint:   rgba(130, 183, 29, 0.08);
    --po-purple:       #714b67;
    --po-blue:         #2e70c9;
    --po-teal:         #068d9d;
    --po-orange:       #e87a2c;
    --po-orange-dark:  #c44a06;
    --po-red:          #c0392b;
    --po-ink:          #1f2937;
    --po-slate:        #555555;
    --po-muted:        #8a95a5;
    --po-line:         #e2e8f0;
    --po-bg-card:      #ffffff;
    --po-bg-soft:      #f8fafc;
    --po-shadow-sm:    0 4px 14px rgba(0, 0, 0, 0.05);
    --po-shadow-md:    0 6px 16px rgba(0, 0, 0, 0.06);
    --po-shadow-lg:    0 8px 24px rgba(0, 0, 0, 0.08);
    --po-shadow-xl:    0 10px 30px rgba(130, 183, 29, 0.25);
}

/* --------------------------------------------------------------------------
   Secciones base — alternancia clara, sin tocar las clases globales
   -------------------------------------------------------------------------- */
.po-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}
.po-section--alt {
    background-color: var(--po-green-soft);
}

/* --------------------------------------------------------------------------
   Títulos de sección — heredan tipografía de .section-title del sitio
   -------------------------------------------------------------------------- */
.po-eyebrow {
    display: inline-block;
    color: var(--po-green);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.po-section h3.po-h3 {
    margin-top: 6px;
    color: var(--po-ink);
    font-weight: 800;
    font-size: 32px;
}
.po-section .po-subtitle {
    margin: 14px auto 0;
    max-width: 780px;
    color: var(--po-slate);
    font-size: 16px;
}
.po-section .po-subtitle b {
    color: var(--po-green);
}

/* --------------------------------------------------------------------------
   Hero · partner badge
   -------------------------------------------------------------------------- */
.po-partner-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.po-partner-row img {
    max-height: 78px;
    height: auto;
}
.po-partner-row .po-partner-id {
    color: var(--po-slate);
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.55;
}
.po-partner-row .po-partner-id b {
    color: var(--po-purple);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Stats · trayectoria
   -------------------------------------------------------------------------- */
.po-stat {
    text-align: center;
    padding: 24px 12px;
}
.po-stat .po-num {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--po-green);
}
.po-stat--purple .po-num { color: var(--po-purple); }
.po-stat--blue   .po-num { color: var(--po-blue); }
.po-stat--orange .po-num { color: var(--po-orange-dark); }
.po-stat .po-divider {
    display: block;
    width: 60px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: var(--po-green);
}
.po-stat--purple .po-divider { background: var(--po-purple); }
.po-stat--blue   .po-divider { background: var(--po-blue); }
.po-stat--orange .po-divider { background: var(--po-orange-dark); }
.po-stat .po-lbl {
    color: var(--po-slate);
    font-size: 14px;
    margin-top: 10px;
    display: block;
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Sectores atendidos · franja
   -------------------------------------------------------------------------- */
.po-sectors-strip {
    background: var(--po-green-tint);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    color: var(--po-ink);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 30px;
}
.po-sectors-strip span {
    color: var(--po-green);
    font-weight: 700;
    margin-right: 10px;
    letter-spacing: 2px;
}
.po-sectors-strip--note {
    background: rgba(130, 183, 29, 0.12);
    margin-top: 32px;
}
.po-sectors-strip--note .po-note-icon {
    color: var(--po-green-dark);
    margin-right: 10px;
}
.po-sectors-strip--note span.po-note {
    font-style: italic;
    color: var(--po-green-dark);
    letter-spacing: normal;
}

/* --------------------------------------------------------------------------
   Tarjetas "Por qué Odoo"
   -------------------------------------------------------------------------- */
.po-card {
    background: var(--po-bg-card);
    border-radius: 18px;
    padding: 26px 26px 22px;
    height: 100%;
    box-shadow: var(--po-shadow-md);
    border-top: 5px solid var(--po-green);
    transition: transform .25s ease, box-shadow .25s ease;
}
.po-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}
.po-card .po-num-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: var(--po-green);
}
.po-card.po-card--purple { border-top-color: var(--po-purple); }
.po-card.po-card--purple .po-num-pill { background: var(--po-purple); }
.po-card.po-card--blue   { border-top-color: var(--po-blue); }
.po-card.po-card--blue   .po-num-pill { background: var(--po-blue); }
.po-card.po-card--teal   { border-top-color: var(--po-teal); }
.po-card.po-card--teal   .po-num-pill { background: var(--po-teal); }
.po-card.po-card--orange { border-top-color: var(--po-orange); }
.po-card.po-card--orange .po-num-pill { background: var(--po-orange); }
.po-card.po-card--red    { border-top-color: var(--po-red); }
.po-card.po-card--red    .po-num-pill { background: var(--po-red); }
.po-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--po-ink);
    margin: 4px 0 10px;
}
.po-card p {
    color: var(--po-slate);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Tarjetas de sectores
   -------------------------------------------------------------------------- */
.po-sector {
    background: var(--po-bg-card);
    border-radius: 14px;
    padding: 22px 22px 20px;
    height: 100%;
    border-left: 6px solid var(--po-green);
    box-shadow: var(--po-shadow-sm);
    transition: transform .2s ease;
}
.po-sector:hover { transform: translateY(-3px); }
.po-sector.s2 { border-left-color: var(--po-teal); }
.po-sector.s3 { border-left-color: var(--po-blue); }
.po-sector.s4 { border-left-color: var(--po-purple); }
.po-sector.s5 { border-left-color: var(--po-green-dark); }
.po-sector.s6 { border-left-color: var(--po-orange); }
.po-sector.s7 { border-left-color: var(--po-red); }
.po-sector .po-ico {
    font-size: 28px;
    color: var(--po-green);
    margin-bottom: 10px;
}
.po-sector.s2 .po-ico { color: var(--po-teal); }
.po-sector.s3 .po-ico { color: var(--po-blue); }
.po-sector.s4 .po-ico { color: var(--po-purple); }
.po-sector.s5 .po-ico { color: var(--po-green-dark); }
.po-sector.s6 .po-ico { color: var(--po-orange); }
.po-sector.s7 .po-ico { color: var(--po-red); }
.po-sector h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--po-ink);
    margin: 0 0 8px;
}
.po-sector p {
    color: var(--po-slate);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.po-sector--cta {
    background: var(--po-green);
    border-left-color: var(--po-green-dark);
}
.po-sector--cta .po-ico,
.po-sector--cta h5,
.po-sector--cta p { color: #ffffff; }

/* --------------------------------------------------------------------------
   Bloques de servicios (head + body)
   -------------------------------------------------------------------------- */
.po-service {
    background: var(--po-bg-card);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--po-shadow-md);
}
.po-service .po-service-head {
    background: var(--po-green);
    color: #ffffff;
    padding: 18px 20px;
}
.po-service.po-service--purple .po-service-head { background: var(--po-purple); }
.po-service.po-service--blue   .po-service-head { background: var(--po-blue); }
.po-service.po-service--teal   .po-service-head { background: var(--po-teal); }
.po-service.po-service--orange .po-service-head { background: var(--po-orange); }
.po-service .po-service-num {
    font-size: 26px;
    font-weight: 800;
    display: block;
}
.po-service .po-service-head h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 4px 0 0;
    color: #ffffff;
}
.po-service .po-service-body {
    padding: 18px 20px 22px;
    color: var(--po-slate);
    font-size: 14.5px;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Tarjetas de pantallas (screenshots)
   -------------------------------------------------------------------------- */
.po-screenshot {
    background: var(--po-bg-card);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--po-shadow-lg);
    height: 100%;
    text-align: center;
}
.po-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.po-screenshot .po-cap {
    display: block;
    margin-top: 12px;
    color: var(--po-slate);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Tarjetas de casos de éxito
   -------------------------------------------------------------------------- */
.po-case {
    background: var(--po-bg-card);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    box-shadow: var(--po-shadow-lg);
    border-bottom: 6px solid var(--po-green);
}
.po-case.po-case--blue   { border-bottom-color: var(--po-blue); }
.po-case.po-case--orange { border-bottom-color: var(--po-orange); }
.po-case .po-logo-wrap {
    background: var(--po-bg-soft);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    min-height: 170px;
}
.po-case .po-logo-wrap img {
    max-width: 100%;
    height: auto;
    max-height: 170px;
}
.po-case .po-tag {
    display: inline-block;
    background: var(--po-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.po-case.po-case--blue   .po-tag { background: var(--po-blue); }
.po-case.po-case--orange .po-tag { background: var(--po-orange); }
.po-case h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--po-ink);
    margin: 0 0 4px;
}
.po-case .po-meta {
    color: var(--po-muted);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 14px;
}
.po-case p.po-summary {
    color: var(--po-slate);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.po-case ul.po-modules {
    list-style: none;
    padding: 0;
    margin: 0;
}
.po-case ul.po-modules li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 13.5px;
    color: var(--po-ink);
    border-top: 1px solid #f1f5f9;
}
.po-case ul.po-modules li:first-child { border-top: none; }
.po-case ul.po-modules li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--po-green);
}
.po-case.po-case--blue   ul.po-modules li:before { background: var(--po-blue); }
.po-case.po-case--orange ul.po-modules li:before { background: var(--po-orange); }
.po-case ul.po-modules li b {
    color: var(--po-ink);
    font-weight: 700;
    display: block;
    font-size: 14px;
}
.po-case ul.po-modules li span {
    color: #6b7280;
    font-size: 13px;
    display: block;
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Diferenciadores numerados
   -------------------------------------------------------------------------- */
.po-diff {
    padding: 8px 0 22px;
}
.po-diff .po-diff-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--po-green);
    letter-spacing: 1px;
}
.po-diff .po-diff-line {
    display: block;
    width: 32px;
    height: 3px;
    margin: 6px 0 12px;
    border-radius: 2px;
    background: var(--po-green);
}
.po-diff h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--po-ink);
    margin: 0 0 8px;
}
.po-diff p {
    color: var(--po-slate);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Pasos del proceso
   -------------------------------------------------------------------------- */
.po-step {
    background: var(--po-bg-card);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--po-shadow-sm);
    text-align: left;
}
.po-step .po-step-num {
    background: var(--po-green);
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    padding: 16px 18px;
    letter-spacing: 1px;
}
.po-step.po-step--alt .po-step-num { background: var(--po-green-dark); }
.po-step .po-step-body { padding: 16px 18px 22px; }
.po-step h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--po-ink);
    margin: 0 0 8px;
}
.po-step .po-step-line {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--po-green);
    margin-bottom: 10px;
    border-radius: 2px;
}
.po-step.po-step--alt .po-step-line { background: var(--po-green-dark); }
.po-step p {
    color: var(--po-slate);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   CTA · banda verde
   IMPORTANTE: la sección NO usa .wrapper.style3 (que tiene bg.png oscuro
   con texto blanco) — así evitamos que el override afecte al banner verde.
   -------------------------------------------------------------------------- */
.po-cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}
.po-cta-band {
    background: linear-gradient(135deg, var(--po-green) 0%, var(--po-green-dark) 100%);
    border-radius: 18px;
    padding: 36px 30px;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--po-shadow-xl);
    position: relative;
    z-index: 2;
}
.po-cta-band h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.po-cta-band p {
    color: #f3fbe6;
    font-size: 15px;
    margin: 0 auto 22px;
    max-width: 720px;
    line-height: 1.55;
}
.po-cta-band p b {
    color: #ffffff;
    font-weight: 800;
}
/* --------------------------------------------------------------------------
   Botón .po-btn — base global rounded pill
   Funciona en cualquier contexto (banda CTA, página de gracias, etc.).
   Dentro de las bandas CTA coloreadas las reglas más específicas lo
   invierten a fondo blanco (ver más abajo y en fortinet/rewards.css).
   -------------------------------------------------------------------------- */
.po-page .po-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--po-green);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 0 4px 8px;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
    border: 2px solid var(--po-green);
    cursor: pointer;
}
.po-page .po-btn:hover,
.po-page .po-btn:focus {
    transform: translateY(-2px);
    background: var(--po-green-dark);
    border-color: var(--po-green-dark);
    color: #ffffff;
    text-decoration: none;
}
.po-page .po-btn.po-btn--outline {
    background: transparent;
    color: var(--po-green-dark);
    border-color: var(--po-green);
}
.po-page .po-btn.po-btn--outline:hover,
.po-page .po-btn.po-btn--outline:focus {
    background: rgba(130, 183, 29, 0.10);
    color: var(--po-green-darker);
    border-color: var(--po-green-dark);
}
.po-page .po-btn.po-btn--whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}
.po-page .po-btn.po-btn--whatsapp:hover,
.po-page .po-btn.po-btn--whatsapp:focus {
    background: #1ebe5b;
    border-color: #1ebe5b;
    color: #ffffff;
}
.po-page .po-btn i {
    font-style: normal;
    margin-right: 4px;
}

/* Override: dentro de la banda CTA verde el botón se ve invertido (fondo blanco) */
.po-cta-band .po-btn {
    background: #ffffff;
    color: var(--po-green-dark);
    border-color: #ffffff;
    margin: 0 6px 8px;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.po-cta-band .po-btn:hover,
.po-cta-band .po-btn:focus {
    background: #f0f7d8;
    color: var(--po-green-darker);
    border-color: #f0f7d8;
}
.po-cta-band .po-btn.po-btn--outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.po-cta-band .po-btn.po-btn--outline:hover,
.po-cta-band .po-btn.po-btn--outline:focus {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}
.po-cta-band .po-btn i {
    margin-right: 6px;
}

/* --------------------------------------------------------------------------
   Landing hero genérico (dos columnas: mensaje + formulario)
   Variantes por marca:
     .po-landing-hero--green   (default — Gasomarshal verde)
     .po-landing-hero--odoo    (Odoo púrpura)
   Cada variante define qué imagen de fondo usar y los acentos de color.
   -------------------------------------------------------------------------- */
.po-page .po-landing-hero {
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    background-color: #1f2937;
}
.po-page .po-landing-hero--green {
    background:
        linear-gradient(115deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(91, 138, 33, 0.45) 100%),
        url("../img/hero/header02.jpg") center/cover no-repeat;
}
.po-page .po-landing-hero--odoo {
    background:
        linear-gradient(115deg, rgba(11, 17, 30, 0.94) 0%, rgba(91, 33, 130, 0.65) 55%, rgba(113, 75, 103, 0.55) 100%),
        url("../img/hero/handshake2.png") center/cover no-repeat;
}
.po-page .po-landing-hero .po-landing-eyebrow {
    color: #c4eb6a;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}
.po-page .po-landing-hero--odoo .po-landing-eyebrow { color: #d8b4fe; }
.po-page .po-landing-hero h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.po-page .po-landing-hero h1 b {
    color: #c4eb6a;
    font-weight: 800;
}
.po-page .po-landing-hero--odoo h1 b { color: #fbbf24; }
.po-page .po-landing-hero p.po-landing-text {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 22px;
}
.po-page .po-landing-hero ul.po-landing-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.po-page .po-landing-hero ul.po-landing-bullets li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.45;
}
.po-page .po-landing-hero ul.po-landing-bullets li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #82b71d;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.po-page .po-landing-hero--odoo ul.po-landing-bullets li:before {
    background: #fbbf24;
    color: #5b21b6;
}
.po-page .po-landing-hero .po-landing-credentials {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.po-page .po-landing-hero .po-landing-cred {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(196, 235, 106, 0.45);
    color: #c4eb6a;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.po-page .po-landing-hero--odoo .po-landing-cred {
    border-color: rgba(251, 191, 36, 0.5);
    color: #fde68a;
}

/* --------------------------------------------------------------------------
   Tarjeta de formulario genérica (lead-capture)
   -------------------------------------------------------------------------- */
.po-page .po-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px 26px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
    color: #1f2937;
}
.po-page .po-form-card .po-form-eyebrow {
    color: #5a8a2a;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.po-page.po-page--odoo .po-form-card .po-form-eyebrow,
.po-page .po-form-card.po-form-card--odoo .po-form-eyebrow { color: #714b67; }
.po-page .po-form-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 6px;
    line-height: 1.25;
}
.po-page .po-form-card .po-form-sub {
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 18px;
}
.po-page .po-form-card .po-form-group {
    margin-bottom: 14px;
}
.po-page .po-form-card label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.po-page .po-form-card label .po-req {
    color: #c0392b;
    margin-left: 2px;
}
.po-page .po-form-card input[type="text"],
.po-page .po-form-card input[type="email"],
.po-page .po-form-card input[type="tel"],
.po-page .po-form-card select,
.po-page .po-form-card textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #1f2937;
    background: #ffffff;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.po-page .po-form-card input[type="text"]:focus,
.po-page .po-form-card input[type="email"]:focus,
.po-page .po-form-card input[type="tel"]:focus,
.po-page .po-form-card select:focus,
.po-page .po-form-card textarea:focus {
    outline: none;
    border-color: #82b71d;
    box-shadow: 0 0 0 3px rgba(130, 183, 29, 0.18);
}
.po-page .po-form-card.po-form-card--odoo input[type="text"]:focus,
.po-page .po-form-card.po-form-card--odoo input[type="email"]:focus,
.po-page .po-form-card.po-form-card--odoo input[type="tel"]:focus,
.po-page .po-form-card.po-form-card--odoo select:focus,
.po-page .po-form-card.po-form-card--odoo textarea:focus {
    border-color: #714b67;
    box-shadow: 0 0 0 3px rgba(113, 75, 103, 0.18);
}
.po-page .po-form-card textarea {
    resize: vertical;
    min-height: 90px;
}
.po-page .po-form-card .po-form-help {
    color: #8a95a5;
    font-size: 11px;
    margin-top: 4px;
    display: block;
}
.po-page .po-form-card .po-form-counter {
    text-align: right;
    color: #8a95a5;
    font-size: 11px;
    margin-top: 4px;
}
.po-page .po-form-card .po-form-counter b {
    color: #5a8a2a;
    font-weight: 700;
}
.po-page .po-form-card.po-form-card--odoo .po-form-counter b { color: #714b67; }
.po-page .po-form-card .po-form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.po-page .po-form-card .po-form-submit {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #82b71d 0%, #5a8a2a 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 18px rgba(130, 183, 29, 0.30);
}
.po-page .po-form-card .po-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(130, 183, 29, 0.40);
}
.po-page .po-form-card.po-form-card--odoo .po-form-submit {
    background: linear-gradient(135deg, #714b67 0%, #5b3252 100%);
    box-shadow: 0 8px 18px rgba(113, 75, 103, 0.32);
}
.po-page .po-form-card.po-form-card--odoo .po-form-submit:hover {
    box-shadow: 0 12px 24px rgba(113, 75, 103, 0.45);
}
.po-page .po-form-card .po-form-privacy {
    color: #8a95a5;
    font-size: 11px;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.45;
}
.po-page .po-form-card .po-form-privacy a {
    color: #5a8a2a;
}

/* Mensajes de estado del formulario */
.po-page .po-form-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.po-page .po-form-alert i {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}
.po-page .po-form-alert.po-form-alert--ok {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}
.po-page .po-form-alert.po-form-alert--err {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

/* --------------------------------------------------------------------------
   Página de gracias genérica
   -------------------------------------------------------------------------- */
.po-page .po-thanks {
    text-align: center;
    padding: 60px 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.po-page .po-thanks .po-thanks-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #82b71d 0%, #5a8a2a 100%);
    color: #ffffff;
    font-size: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(130, 183, 29, 0.32);
}
.po-page .po-thanks.po-thanks--odoo .po-thanks-icon {
    background: linear-gradient(135deg, #714b67 0%, #5b3252 100%);
    box-shadow: 0 14px 30px rgba(113, 75, 103, 0.32);
}
.po-page .po-thanks h1 {
    color: #1f2937;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
}
.po-page .po-thanks p {
    color: #475569;
    font-size: 16px;
    line-height: 1.55;
    margin: 0 auto 24px;
    max-width: 600px;
}
.po-page .po-thanks .po-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .po-stat .po-num { font-size: 42px; }
    .po-cta-band h3 { font-size: 22px; }
    .po-case .po-logo-wrap { min-height: 140px; }
    .po-section h3.po-h3 { font-size: 26px; }
    .po-section { padding: 44px 0; }
    .po-page .po-landing-hero h1 { font-size: 28px; }
    .po-page .po-landing-hero { padding: 40px 0; }
    .po-page .po-form-card { padding: 22px 22px 20px; }
    .po-page .po-thanks { padding: 40px 18px; }
    .po-page .po-thanks h1 { font-size: 24px; }
}
