/* ==========================================================
   LODAGU - STYLE.CSS
   Estilos generales del sitio
   ========================================================== */

:root {
    --green: #1C455A;
    --green-dark: #123547;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --soft: #F3F6F7;
    --soft-2: #E7EEF1;
    --ink: #263238;
    --muted: #5D6B72;
    --line: rgba(28, 69, 90, 0.16);
    --shadow: 0 18px 45px rgba(28, 69, 90, 0.12);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: 0;
}

ul {
    list-style: none;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.narrow {
    max-width: 880px;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--green);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: auto;
    height: 52px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
}

.site-nav a::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    background-color: var(--gold);
    transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    background-color: transparent;
}

.header-cta {
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    background-color: var(--green);
    border-radius: 999px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    background-color: var(--green-dark);
    box-shadow: 0 10px 25px rgba(28, 69, 90, 0.22);
    transform: translateY(-2px);
}

.btn-light {
    color: var(--green);
    background-color: var(--white);
}

.btn-light:hover {
    color: var(--green-dark);
    background-color: #F2F5F6;
}

/* IMPORTANTE:
   Este botón pertenece únicamente al menú móvil.
   Debe permanecer oculto en escritorio. */
.btn.nav-mobile-cta {
    display: none;
}

main {
    background-color: var(--white);
}

h1,
h2,
h3 {
    color: var(--green);
}

p {
    color: var(--muted);
    line-height: 1.8;
}

.eyebrow {
    display: inline-block;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-white {
    padding: 100px 0;
    background-color: var(--white);
}

.section-soft {
    padding: 100px 0;
    background-color: var(--soft);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    color: var(--ink);
}

.page-hero {
    padding: 170px 0 90px;
    text-align: center;
    background: linear-gradient(
        180deg,
        var(--soft) 0%,
        var(--white) 100%
    );
}

.page-hero .container {
    max-width: 900px;
}

.page-hero h1 {
    margin-top: 20px;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.1;
}

.inline-cta {
    padding: 60px 0;
    background-color: var(--soft-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.inline-cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

.inline-cta p {
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}
