/* =====================================================
   ZUITE CONSULTING — Landing Page Styles
   ===================================================== */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    --navy:         #061B49;
    --navy-dark:    #040f2e;
    --blue:         #0B3D91;
    --orange:       #FF6B00;
    --orange-dark:  #e05d00;
    --bg-light:     #F7F9FC;
    --white:        #FFFFFF;
    --text-primary: #17213D;
    --text-secondary: #5F6B7A;
    --border:       #E6EBF2;
    --font: 'Inter', system-ui, 'Segoe UI', Arial, sans-serif;
    --shadow-sm:  0 1px 4px rgba(6,27,73,.07);
    --shadow-md:  0 4px 18px rgba(6,27,73,.10);
    --shadow-lg:  0 8px 36px rgba(6,27,73,.14);
    --radius:     12px;
    --radius-sm:  8px;
    --ease:       0.22s ease;
    --header-h:   76px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* =====================================================
   CONTAINER
   ===================================================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   BUTTONS (hero & nav)
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--ease), color var(--ease),
                border-color var(--ease), transform var(--ease),
                box-shadow var(--ease);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,107,0,.32);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section-pad { padding: 96px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-subtitle {
    margin-top: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.section-line {
    display: block;
    width: 46px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 16px auto 0;
}

.accent { color: var(--orange); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    transition: box-shadow var(--ease);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(6,27,73,.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo {
    height: 40px;
    width: auto;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Footer logo variant */
.logo-link--footer {
    display: inline-flex;
    margin-bottom: 14px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.logo-wordmark--light .logo-name {
    color: var(--white);
}

.logo-wordmark--light .logo-tagline {
    color: rgba(255,255,255,0.55);
}

/* Nav */
.main-nav { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.91rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 4px;
    position: relative;
    transition: color var(--ease);
}

.nav-link:hover { color: var(--navy); }

.nav-link.active {
    color: var(--navy);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background var(--ease);
}

.nav-toggle:hover { background: var(--bg-light); }

.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    margin-top: var(--header-h);
    background: var(--bg-light);
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 48px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 0;
}

.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* =====================================================
   CREDIBILITY STRIP
   ===================================================== */
.credibility-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
}

.credibility-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.credibility-icon svg {
    width: 22px;
    height: 22px;
}

.credibility-text {
    display: flex;
    flex-direction: column;
}

.credibility-text strong {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.credibility-text span {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

/* =====================================================
   WHY ZUITE
   ===================================================== */
.why-zuite { background: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: box-shadow var(--ease), transform var(--ease);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 20px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =====================================================
   PROCESS TIMELINE
   ===================================================== */
.process { background: var(--bg-light); }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Connecting horizontal line between step numbers */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 19px; /* vertically centered on step-number (38px height / 2 - 1px) */
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number--navy {
    background: var(--navy);
    color: var(--white);
}

.step-number--orange {
    background: var(--orange);
    color: var(--white);
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin: 0 auto 14px;
    box-shadow: var(--shadow-sm);
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

.process-step h3 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.service-card {
    padding: 26px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow var(--ease), transform var(--ease);
}

.service-card:not(.service-card--primary):hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Primary service card */
.service-card--primary {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    padding: 36px 28px;
    grid-row: span 2;
}

.service-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 2px;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.service-icon svg { width: 20px; height: 20px; }

.service-icon--alt {
    background: var(--bg-light);
    color: var(--orange);
}

.service-card--primary h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.service-card:not(.service-card--primary) h3 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
}

.service-card--primary p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    flex: 1;
}

.service-card:not(.service-card--primary) p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--white);
    transition: opacity var(--ease);
    margin-top: 4px;
}

.service-link:hover { opacity: 0.75; }

.service-link--alt {
    color: var(--orange);
}

/* =====================================================
   IGUALDAD TÉCNICA
   ===================================================== */
.equity { background: var(--white); }

.equity-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* =====================================================
   RAMOS QUE ATENDEMOS
   ===================================================== */
.ramos {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ramos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ramo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.ramo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--orange);
}

.ramo-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
    transition: background var(--ease), color var(--ease);
}

.ramo-icon svg { width: 24px; height: 24px; }

.ramo-card:hover .ramo-icon {
    background: var(--navy);
    color: var(--white);
}

.ramo-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.cta-final {
    background: var(--navy);
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.98rem;
    max-width: 420px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
    flex-shrink: 0;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.93rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
    text-align: center;
}

.btn-cta-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-cta-primary:hover,
.btn-cta-primary:focus-visible {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-cta-whatsapp {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}

.btn-cta-whatsapp:hover,
.btn-cta-whatsapp:focus-visible {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.65);
    transform: translateY(-1px);
}

.btn-cta:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.footer-brand p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: background var(--ease), color var(--ease);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav ul li a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--ease);
}

.footer-nav ul li a:hover { color: var(--white); }

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact ul li a {
    color: rgba(255,255,255,0.55);
    transition: color var(--ease);
}

.footer-contact ul li a:hover { color: var(--white); }

.footer-contact svg {
    flex-shrink: 0;
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.81rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: color var(--ease);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-legal span { color: rgba(255,255,255,0.18); }

/* =====================================================
   RESPONSIVE — TABLET (max 1024px)
   ===================================================== */
@media (max-width: 1024px) {
    /* Services: primary spans full width, secondary 2-col */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--primary {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    /* Ramos: 3-col */
    .ramos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer: 2-col */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE (max 768px)
   ===================================================== */
@media (max-width: 768px) {
    :root { --header-h: 68px; }

    .section-pad { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    /* Header mobile */
    .nav-toggle { display: flex; }

    /* Hide CTA button in header on mobile */
    .header-actions .btn-primary { display: none; }

    /* Full-height slide-down mobile nav */
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px 24px;
        transform: translateY(-108%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.22s ease;
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-link:last-child { border-bottom: none; }

    .nav-link.active::after { display: none; }

    /* Hero: stacked */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px 48px;
        gap: 28px;
        align-items: start;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
        padding: 0;
        justify-content: flex-start;
    }

    .hero-image-wrap {
        order: 2;
        aspect-ratio: 16 / 10;
        margin: 0;
    }

    .hero-title { font-size: clamp(1.9rem, 7vw, 2.5rem); }

    /* Credibility: 2-col */
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why: 1-col */
    .why-grid { grid-template-columns: 1fr; }

    /* Process: stacked */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Remove horizontal line, add vertical indicator */
    .process-timeline::before { display: none; }

    .process-step {
        display: grid;
        grid-template-columns: 56px 1fr;
        text-align: left;
        align-items: start;
        gap: 0 16px;
        padding-bottom: 32px;
    }

    .step-number {
        margin: 0;
        grid-row: 1;
        grid-column: 1;
    }

    .step-icon {
        margin: 16px 0 0;
        grid-row: 2;
        grid-column: 1;
    }

    .process-step h3 {
        grid-row: 1;
        grid-column: 2;
        align-self: center;
        padding-left: 0;
    }

    .process-step p {
        grid-row: 2;
        grid-column: 2;
        margin-top: 16px;
    }

    /* Services: 1-col */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card--primary {
        grid-row: auto;
    }

    /* Ramos: 2-col */
    .ramos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA: stacked, centered */
    .cta-final { padding: 56px 0; }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p { max-width: 100%; }

    .cta-buttons {
        width: 100%;
        min-width: auto;
    }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand { grid-column: auto; }
    .footer-brand p { max-width: 100%; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ===================================================== */
@media (max-width: 480px) {
    .credibility-grid { grid-template-columns: 1fr; }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .ramos-grid {
        grid-template-columns: 1fr;
    }
}
