:root {
    --white: #ffffff;
    --panama-blue: #0057b8;
    --panama-red: #d71920;
    --dark: #071b4d;
    --text: #16213e;
    --muted: #5f6f89;
    --soft-blue: #edf5ff;
    --border: #dce6f5;
    --green: #11b85a;
    --shadow: 0 18px 50px rgba(7, 27, 77, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
}

body.admin-bar .site-header {
    top: 32px;
}

main {
    min-height: 100vh;
}

main[id] {
    scroll-margin-top: 92px;
}

section {
    scroll-margin-top: 92px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 87, 184, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(7, 27, 77, 0.07);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 72px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: auto;
    height: 48px;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.site-navigation a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--dark);
    font-weight: 750;
    text-decoration: none;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
    color: var(--panama-blue);
    background: var(--soft-blue);
}

section {
    padding: 34px 16px;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--panama-blue);
    letter-spacing: -0.05em;
}

h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: 0.98;
}

h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1.05;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: inherit;
}

.whatsapp strong.w-number {
    font-size: 1.5rem;
    color: var(--panama-blue); 
}


.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 18px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.hero {
    padding-top: 22px;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.offer {
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    top: -55px;
    border-radius: 999px;
    background: #fff0f1;
}

.offer > * {
    position: relative;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--panama-red);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.subtitle {
    margin-top: 16px;
    font-size: 1.15rem;
    line-height: 1.65;
}

.center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.price {
    margin-top: 22px;
    padding: 18px;
    border-radius: 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--panama-blue) 0%, var(--dark) 100%);
}

.price span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.9;
}

.price strong {
    display: block;
    margin-top: 2px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.checklist {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.96rem;
    line-height: 1.35;
}

.checklist li::before {
    content: "✓";
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--panama-red);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 900;
}

.actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.button {
    min-height: 48px;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 14px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.primary {
    color: var(--white);
    background: var(--panama-red);
    box-shadow: 0 12px 26px rgba(215, 25, 32, 0.24);
}

.secondary {
    color: var(--panama-blue);
    background: var(--white);
    border-color: rgba(0, 87, 184, 0.35);
}

.full {
    width: 100%;
    margin-bottom: 1rem;
}

.contact {
    padding: 18px;
}

.whatsapp {
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(17, 184, 90, 0.22);
    border-radius: 20px;
    background: linear-gradient(135deg, #eafff2 0%, #ffffff 100%);
    text-decoration: none;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
   
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
}

.whatsapp-icon svg {
    width: 10rem;
    height: 10rem;
    display: block;
}

.whatsapp span span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.whatsapp strong {
    display: block;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 900;
}

form {
    margin-top: 18px;
}

form h2 {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 12px;
}

label span {
    color: var(--dark);
    font-size: 0.86rem;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    color: var(--text);
    background: #fbfdff;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--panama-blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.12);
}


.contact textarea {
    min-height: 110px;
    resize: vertical;
}

.value {
    background:
        radial-gradient(circle at top left, rgba(0, 87, 184, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.value header {
    text-align: center;
}

.value .grid {
    margin-top: 24px;
    gap: 14px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 26px 22px;
}

.feature h3 {
    margin-top: 4px;
}

.feature p {
    max-width: 310px;
}

.icon {
    width: auto;
    height: auto;
    display: block;
    color: var(--panama-blue);
    background: transparent;
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 950;
}

.icon.red {
    color: var(--panama-red);
}

.button.small {
    min-height: 40px;
    margin-top: auto;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.section-heading {
    max-width: 840px;
    margin: 0 auto 28px;
    text-align: center;
}

.included {
    background: var(--white);
}

.included-grid {
    display: grid;
    gap: 14px;
}

.included-item {
    padding: 20px;
    display: flex;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fbfdff;
}

.included-item h3 {
    margin-bottom: 7px;
}

.included-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.item-number {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--white);
    background: var(--panama-blue);
    font-size: 0.82rem;
    font-weight: 900;
}

.item-number.red {
    background: var(--panama-red);
}

.process {
    background:
        radial-gradient(circle at bottom right, rgba(215, 25, 32, 0.08), transparent 30%),
        var(--soft-blue);
}

.process-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    list-style: none;
}

.process-step {
    padding: 24px 22px;
}

.process-step > span {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--panama-red);
    box-shadow: 0 9px 20px rgba(215, 25, 32, 0.2);
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 10px;
}

.promise {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.75), transparent 38%),
        var(--dark);
}

.promise-grid {
    display: grid;
    gap: 28px;
}

.promise h2 {
    color: var(--white);
}

.promise .subtitle {
    color: #c9d8ee;
}

.text-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 850;
    text-decoration-color: rgba(255, 255, 255, 0.45);
    text-underline-offset: 5px;
}

.text-link span {
    color: #ff5660;
    font-size: 1.35rem;
}

.promise-panel {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.98);
}

.promise-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.promise-list li {
    padding: 19px 0 19px 42px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.promise-list li:last-child {
    border-bottom: 0;
}

.promise-list li::before {
    content: "✓";
    width: 27px;
    height: 27px;
    position: absolute;
    top: 19px;
    left: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--panama-blue);
    font-size: 0.78rem;
    font-weight: 900;
}

.promise-list strong,
.promise-list span {
    display: block;
}

.promise-list strong {
    color: var(--dark);
    font-size: 1.02rem;
}

.promise-list span {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.45;
}

.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    gap: 28px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fbfdff;
}

.faq-list summary {
    padding: 18px 52px 18px 18px;
    position: relative;
    color: var(--dark);
    font-weight: 850;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 14px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--panama-blue);
    background: var(--soft-blue);
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 18px 18px;
    font-size: 0.95rem;
}

.closing {
    padding-top: 16px;
    background: var(--white);
}

.closing-box {
    padding: 28px 22px;
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--panama-blue), var(--dark));
    box-shadow: var(--shadow);
}

.closing-box h2,
.closing-box p {
    color: var(--white);
}

.closing-box > div > p:last-child {
    margin-top: 12px;
    color: #d7e5f7;
}

.closing-actions {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.button.light {
    color: var(--panama-blue);
    background: var(--white);
}

.site-footer {
    padding: 46px 16px 24px;
    color: var(--white);
    background: #041238;
}

.footer-grid {
    display: grid;
    gap: 32px;
}

.footer-brand img {
    width: auto;
    height: 42px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 16px;
    color: #9eb1ce;
}

.footer-column {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-column a {
    color: #b8c7de;
    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: #8297b7;
    font-size: 0.82rem;
}

.guides-hero {
    padding-bottom: 18px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.guides-hero .subtitle {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.guides-content {
    padding-top: 20px;
    background: #f7fbff;
}

.guide-grid {
    display: grid;
    gap: 16px;
}

.guide-card {
    min-height: 210px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-card .guide-status {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--panama-red);
    background: #fff0f1;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.guide-card h2 {
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}
