:root {
    --wp-primary: #082B4C;
    --wp-primary-2: #0D3D68;
    --wp-primary-dark: #041A2F;
    --wp-red: #D92332;
    --wp-red-dark: #B91826;
    --wp-red-soft: rgba(217, 35, 50, 0.10);
    --wp-blue-soft: rgba(8, 43, 76, 0.10);
    --wp-green: #18A058;
    --wp-dark: #0F172A;
    --wp-text: #1F2937;
    --wp-muted: #667085;
    --wp-light: #F6F9FC;
    --wp-white: #FFFFFF;
    --wp-border: rgba(15, 23, 42, 0.10);
    --wp-shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
    --wp-shadow-md: 0 18px 50px rgba(15, 23, 42, 0.10);
    --wp-shadow-lg: 0 28px 80px rgba(8, 43, 76, 0.18);
    --wp-radius-sm: 14px;
    --wp-radius-md: 22px;
    --wp-radius-lg: 34px;
    --wp-transition: all 0.28s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--wp-text);
    background: #ffffff;
    overflow-x: hidden;
}

body::selection {
    background: var(--wp-red);
    color: #ffffff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

section {
    position: relative;
    scroll-margin-top: 115px;
}

/* BUTTONS */
.wp-btn-primary {
    background: linear-gradient(135deg, var(--wp-red), var(--wp-red-dark));
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 24px;
    box-shadow: 0 16px 34px rgba(217, 35, 50, 0.24);
    transition: var(--wp-transition);
}

.wp-btn-primary:hover,
.wp-btn-primary:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(217, 35, 50, 0.34);
}

.wp-btn-outline {
    background: #ffffff;
    color: var(--wp-primary);
    border: 1px solid rgba(8, 43, 76, 0.18);
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 24px;
    transition: var(--wp-transition);
}

.wp-btn-outline:hover,
.wp-btn-outline:focus {
    background: var(--wp-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.wp-btn-light {
    background: #ffffff;
    color: var(--wp-primary);
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    padding: 12px 26px;
    transition: var(--wp-transition);
}

.wp-btn-light:hover {
    background: #F8FAFC;
    color: var(--wp-red);
    transform: translateY(-2px);
}

/* HEADER */
.wp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: var(--wp-transition);
}

.wp-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.wp-topbar {
    background: var(--wp-primary-dark);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
}

.wp-topbar-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.wp-topbar-left,
.wp-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.wp-topbar span,
.wp-topbar a {
    color: rgba(255,255,255,0.78);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--wp-transition);
}

.wp-topbar a:hover {
    color: #ffffff;
}

.wp-topbar i {
    color: #FF9DA5;
}

.wp-navbar {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 13px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.wp-brand {
    display: inline-flex;
    align-items: center;
}

.wp-brand img {
    height: 58px;
    object-fit: contain;
}

.wp-menu {
    gap: 4px;
}

.wp-menu .nav-link {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 15px !important;
    transition: var(--wp-transition);
}

.wp-menu .nav-link:hover,
.wp-menu .nav-link.active {
    color: var(--wp-primary);
    background: var(--wp-blue-soft);
}

.wp-navbar-cta {
    font-size: 14px;
    padding: 10px 20px;
}

.wp-navbar-toggler {
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--wp-blue-soft);
    color: var(--wp-primary);
    font-size: 28px;
    box-shadow: none !important;
}

/* HERO */
.wp-hero {
    overflow: hidden;
    padding: 92px 0 96px;
    background:
        radial-gradient(circle at 8% 16%, rgba(217, 35, 50, 0.10), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(8, 43, 76, 0.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #F6F9FC 100%);
}

.wp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 43, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 43, 76, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.33), transparent 80%);
    pointer-events: none;
}

.wp-hero-content {
    position: relative;
    z-index: 2;
}

.wp-hero-badge,
.wp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    border: 1px solid rgba(8, 43, 76, 0.12);
    color: var(--wp-primary);
    box-shadow: var(--wp-shadow-sm);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.wp-hero-badge i {
    color: var(--wp-red);
}

.wp-hero h1 {
    color: var(--wp-dark);
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 900;
    margin-bottom: 24px;
}

.wp-hero p {
    color: var(--wp-muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 630px;
    margin: 0;
}

.wp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.wp-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.wp-hero-trust div {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--wp-shadow-sm);
}

.wp-hero-trust strong {
    display: block;
    color: var(--wp-primary);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.wp-hero-trust span {
    display: block;
    color: var(--wp-muted);
    font-size: 13px;
    line-height: 1.45;
}

.wp-hero-visual {
    position: relative;
    padding: 20px;
}

.wp-hero-visual::before {
    content: "";
    position: absolute;
    inset: 42px 0 0 42px;
    border-radius: var(--wp-radius-lg);
    background: linear-gradient(135deg, var(--wp-primary), var(--wp-red));
    transform: rotate(-3deg);
    opacity: 0.92;
}

.wp-hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--wp-radius-lg);
    overflow: hidden;
    box-shadow: var(--wp-shadow-lg);
    border: 8px solid #ffffff;
}

.wp-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,43,76,0.20), rgba(217,35,50,0.06));
}

.wp-hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.wp-hero-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 14px 16px;
    box-shadow: var(--wp-shadow-md);
}

.wp-hero-card span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--wp-red-soft);
    color: var(--wp-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wp-hero-card strong {
    color: var(--wp-dark);
    font-size: 14px;
    font-weight: 900;
    display: block;
}

.wp-hero-card small {
    color: var(--wp-muted);
    display: block;
    font-size: 12px;
}

.wp-hero-card-top {
    top: 78px;
    left: -8px;
}

.wp-hero-card-bottom {
    right: -8px;
    bottom: 112px;
}

.wp-hero-emergency {
    position: absolute;
    z-index: 4;
    left: 54px;
    right: 54px;
    bottom: -4px;
    background: var(--wp-primary-dark);
    color: #ffffff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 24px 70px rgba(8,43,76,0.24);
    font-weight: 800;
}

.wp-hero-emergency i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* SECTION HEADING */
.wp-section-heading {
    max-width: 770px;
    margin: 0 auto 50px;
    text-align: center;
}

.wp-section-heading span {
    display: inline-flex;
    color: var(--wp-red);
    background: var(--wp-red-soft);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.wp-section-heading h2,
.wp-medical-content h2,
.wp-compliance h2,
.wp-contact h2 {
    color: var(--wp-dark);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 900;
    margin-bottom: 16px;
}

.wp-section-heading p,
.wp-medical-content p,
.wp-compliance p,
.wp-contact p {
    color: var(--wp-muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

/* SERVICES */
.wp-services {
    padding: 100px 0;
    background: #ffffff;
}

.wp-service-card {
    height: 100%;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--wp-shadow-sm);
    overflow: hidden;
    transition: var(--wp-transition);
}

.wp-service-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    background: rgba(8, 43, 76, 0.06);
    border-radius: 999px;
    transition: var(--wp-transition);
}

.wp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wp-shadow-md);
    border-color: rgba(8, 43, 76, 0.18);
}

.wp-service-card:hover::after {
    background: rgba(217, 35, 50, 0.08);
}

.wp-service-card.featured {
    background: linear-gradient(180deg, #ffffff 0%, #FDF7F8 100%);
    border-color: rgba(217, 35, 50, 0.20);
}

.wp-service-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: var(--wp-blue-soft);
    color: var(--wp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.wp-service-card.featured .wp-service-icon {
    background: var(--wp-red-soft);
    color: var(--wp-red);
}

.wp-service-card h5 {
    color: var(--wp-dark);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}

.wp-service-card p {
    color: var(--wp-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.wp-service-card a {
    position: relative;
    z-index: 2;
    color: var(--wp-primary);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wp-service-card a i {
    transition: var(--wp-transition);
}

.wp-service-card a:hover i {
    transform: translateX(4px);
}

/* MEDICAL */
.wp-medical {
    padding: 100px 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(217,35,50,0.08), transparent 30%),
        var(--wp-light);
}

.wp-medical-visual {
    position: relative;
    border-radius: var(--wp-radius-lg);
}

.wp-medical-visual img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: var(--wp-radius-lg);
    box-shadow: var(--wp-shadow-lg);
}

.wp-medical-floating {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 1px solid rgba(15,23,42,0.08);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--wp-shadow-md);
}

.wp-medical-floating i {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    background: var(--wp-red-soft);
    color: var(--wp-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.wp-medical-floating strong {
    color: var(--wp-dark);
    display: block;
    font-weight: 900;
}

.wp-medical-floating span {
    color: var(--wp-muted);
    font-size: 13px;
}

.wp-medical-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 32px;
}

.wp-medical-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 18px;
    padding: 15px;
    box-shadow: var(--wp-shadow-sm);
}

.wp-medical-list i {
    color: var(--wp-green);
    font-size: 20px;
    margin-top: 1px;
}

.wp-medical-list span {
    color: var(--wp-text);
    font-weight: 700;
}

/* COMPLIANCE */
.wp-compliance {
    padding: 100px 0;
    background: #ffffff;
}

.wp-compliance .btn {
    margin-top: 30px;
}

.wp-compliance-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wp-compliance-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--wp-shadow-sm);
    transition: var(--wp-transition);
}

.wp-compliance-item:hover {
    transform: translateY(-7px);
    box-shadow: var(--wp-shadow-md);
}

.wp-compliance-item span {
    display: inline-flex;
    color: var(--wp-red);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.32;
}

.wp-compliance-item h5 {
    color: var(--wp-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.wp-compliance-item p {
    font-size: 15px;
    line-height: 1.65;
}

/* PROCESS */
.wp-process {
    padding: 100px 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(217,35,50,0.15), transparent 28%),
        linear-gradient(135deg, var(--wp-primary-dark) 0%, var(--wp-primary) 100%);
    color: #ffffff;
}

.wp-section-heading.light span {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.wp-section-heading.light h2 {
    color: #ffffff;
}

.wp-section-heading.light p {
    color: rgba(255,255,255,0.74);
}

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

.wp-process-step {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 26px;
    transition: var(--wp-transition);
}

.wp-process-step:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

.wp-process-number {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #ffffff;
    color: var(--wp-red);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.wp-process-step h5 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 10px;
}

.wp-process-step p {
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
}

/* BENEFITS */
.wp-benefits {
    padding: 100px 0;
    background: #ffffff;
}

.wp-benefit-card {
    height: 100%;
    background: var(--wp-light);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 28px;
    padding: 28px;
    transition: var(--wp-transition);
}

.wp-benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--wp-shadow-md);
    background: #ffffff;
}

.wp-benefit-card i {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    background: var(--wp-red-soft);
    color: var(--wp-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.wp-benefit-card h5 {
    color: var(--wp-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.wp-benefit-card p {
    color: var(--wp-muted);
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.wp-cta {
    padding: 20px 0 100px;
    background: #ffffff;
}

.wp-cta-box {
    background:
        radial-gradient(circle at 90% 20%, rgba(255,255,255,0.18), transparent 26%),
        linear-gradient(135deg, var(--wp-red), var(--wp-primary));
    border-radius: 36px;
    padding: 48px;
    color: #ffffff;
    box-shadow: var(--wp-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.wp-cta-box span {
    display: inline-flex;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.wp-cta-box h2 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin-bottom: 12px;
    max-width: 760px;
}

.wp-cta-box p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
}

.wp-cta-box .btn {
    white-space: nowrap;
}

/* CONTACT */
.wp-contact {
    padding: 100px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(8,43,76,0.09), transparent 30%),
        var(--wp-light);
}

.wp-contact-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.wp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--wp-shadow-sm);
}

.wp-contact-item > i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: var(--wp-blue-soft);
    color: var(--wp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wp-contact-item strong {
    display: block;
    color: var(--wp-dark);
    margin-bottom: 3px;
}

.wp-contact-item a,
.wp-contact-item p {
    color: var(--wp-muted);
    margin: 0;
    transition: var(--wp-transition);
}

.wp-contact-item a:hover {
    color: var(--wp-red);
}

.wp-contact-form {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--wp-shadow-md);
}

.wp-form-title {
    margin-bottom: 24px;
}

.wp-form-title h5 {
    color: var(--wp-dark);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
}

.wp-form-title p {
    color: var(--wp-muted);
    margin: 0;
}

.form-label {
    color: var(--wp-dark);
    font-size: 13px;
    font-weight: 900;
}

.form-control {
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.12);
    padding: 13px 15px;
    color: var(--wp-dark);
    box-shadow: none;
    transition: var(--wp-transition);
}

.form-control::placeholder {
    color: #9CA3AF;
}

.form-control:focus {
    border-color: var(--wp-primary);
    box-shadow: 0 0 0 0.18rem rgba(8,43,76,0.13);
}

/* SELECT PERSONALIZADO */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background-color: #ffffff;
    color: var(--wp-dark);
    font-weight: 600;
    padding: 13px 48px 13px 15px;
    line-height: 1.4;
    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--wp-primary) 50%),
        linear-gradient(135deg, var(--wp-primary) 50%, transparent 50%),
        linear-gradient(to right, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.10));
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%,
        calc(100% - 44px) 50%;
    background-size:
        6px 6px,
        6px 6px,
        1px 24px;
    background-repeat: no-repeat;
}

select.form-control:hover {
    border-color: rgba(8, 43, 76, 0.24);
}

select.form-control:focus {
    border-color: var(--wp-primary);
    box-shadow: 0 0 0 0.18rem rgba(8, 43, 76, 0.13);
}

select.form-control option {
    color: var(--wp-dark);
    font-weight: 500;
}

.wp-contact-alert {
    border-radius: 16px;
    padding: 13px 15px;
    font-size: 14px;
    font-weight: 800;
}

.wp-contact-alert.success {
    background: rgba(24, 160, 88, 0.10);
    color: #147A45;
    border: 1px solid rgba(24, 160, 88, 0.20);
}

.wp-contact-alert.error {
    background: rgba(217, 35, 50, 0.10);
    color: var(--wp-red-dark);
    border: 1px solid rgba(217, 35, 50, 0.20);
}

/* FOOTER */
.wp-footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(217,35,50,0.16), transparent 28%),
        linear-gradient(135deg, var(--wp-primary-dark), #020B14);
    color: rgba(255,255,255,0.74);
    padding: 76px 0 24px;
}

.wp-footer-main {
    padding-bottom: 42px;
}

.wp-footer-logo {
    display: inline-flex;
    background: #ffffff;
    border-radius: 18px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

.wp-footer-logo img {
    height: 70px;
    object-fit: contain;
}

.wp-footer-brand p {
    max-width: 370px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.wp-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wp-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--wp-transition);
}

.wp-footer-social a:hover {
    background: var(--wp-red);
    transform: translateY(-3px);
}

.wp-footer-column h6,
.wp-footer-contact h6 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 20px;
}

.wp-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.wp-footer-column a {
    color: rgba(255,255,255,0.70);
    transition: var(--wp-transition);
}

.wp-footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
    display: inline-flex;
}

.wp-footer-contact {
    display: grid;
    gap: 14px;
}

.wp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wp-footer-contact-item span {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #FF9DA5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wp-footer-contact-item small {
    display: block;
    color: rgba(255,255,255,0.48);
    margin-bottom: 2px;
}

.wp-footer-contact-item a,
.wp-footer-contact-item p {
    color: rgba(255,255,255,0.76);
    margin: 0;
}

.wp-footer-contact-item a:hover {
    color: #ffffff;
}

.wp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.56);
}

/* WHATSAPP */
.wp-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
}

.wp-whatsapp-button {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.36);
    cursor: pointer;
    transition: var(--wp-transition);
}

.wp-whatsapp-button:hover {
    transform: translateY(-4px) scale(1.03);
}

.wp-whatsapp-panel {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: 365px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.10);
    box-shadow: 0 24px 70px rgba(15,23,42,0.20);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    pointer-events: none;
    transition: var(--wp-transition);
}

.wp-whatsapp.is-open .wp-whatsapp-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wp-whatsapp-header {
    background: linear-gradient(135deg, var(--wp-primary), var(--wp-primary-dark));
    color: #ffffff;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.wp-whatsapp-header small {
    display: block;
    color: rgba(255,255,255,0.68);
    font-weight: 700;
    margin-bottom: 3px;
}

.wp-whatsapp-header h6 {
    margin: 0;
    font-weight: 900;
}

.wp-whatsapp-header button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.13);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wp-whatsapp-body {
    padding: 10px;
}

.wp-whatsapp-option {
    display: flex;
    gap: 12px;
    padding: 13px;
    border-radius: 18px;
    transition: var(--wp-transition);
    color: var(--wp-dark);
}

.wp-whatsapp-option:hover {
    background: var(--wp-light);
    color: var(--wp-primary);
}

.wp-whatsapp-option span {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 15px;
    background: rgba(37,211,102,0.12);
    color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.wp-whatsapp-option strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.wp-whatsapp-option small {
    display: block;
    color: var(--wp-muted);
    font-size: 12px;
    line-height: 1.35;
}

/* SCROLL TOP */
#scrollTopBtn {
    position: fixed;
    right: 100px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--wp-primary);
    color: #ffffff;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(8,43,76,0.28);
    z-index: 1000;
    transition: var(--wp-transition);
}

#scrollTopBtn:hover {
    background: var(--wp-red);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .wp-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-hero-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-hero-trust div:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .wp-topbar {
        display: none;
    }

    .wp-navbar {
        padding: 10px 0;
    }

    .wp-brand img {
        height: 52px;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        background: #ffffff;
        border: 1px solid rgba(15,23,42,0.08);
        border-radius: 24px;
        box-shadow: var(--wp-shadow-md);
    }

    .wp-menu {
        gap: 8px;
        margin-bottom: 16px;
    }

    .wp-menu .nav-link {
        text-align: center;
    }

    .wp-navbar-cta {
        width: 100%;
    }

    .wp-hero {
        padding: 72px 0 82px;
        text-align: center;
    }

    .wp-hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .wp-hero-visual {
        margin-top: 18px;
    }

    .wp-compliance-board {
        grid-template-columns: 1fr;
    }

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

    .wp-cta-box .btn {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    section {
        scroll-margin-top: 90px;
    }

    .wp-hero,
    .wp-services,
    .wp-medical,
    .wp-compliance,
    .wp-process,
    .wp-benefits,
    .wp-contact {
        padding: 72px 0;
    }

    .wp-hero h1 {
        font-size: 36px;
    }

    .wp-hero p {
        font-size: 16px;
    }

    .wp-hero-actions .btn {
        width: 100%;
    }

    .wp-hero-trust {
        grid-template-columns: 1fr;
    }

    .wp-hero-trust div:last-child {
        grid-column: auto;
    }

    .wp-hero-image img {
        height: 380px;
    }

    .wp-hero-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 12px;
        justify-content: center;
    }

    .wp-hero-emergency {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: -16px;
    }

    .wp-medical-visual img {
        min-height: 360px;
    }

    .wp-process-timeline {
        grid-template-columns: 1fr;
    }

    .wp-cta {
        padding: 0 0 72px;
    }

    .wp-cta-box {
        padding: 34px 24px;
        border-radius: 28px;
    }

    .wp-contact-form {
        padding: 24px;
        border-radius: 24px;
    }

    .wp-footer {
        text-align: center;
    }

    .wp-footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .wp-footer-social {
        justify-content: center;
    }

    .wp-footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .wp-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .wp-brand img {
        height: 46px;
    }

    .wp-section-heading h2,
    .wp-medical-content h2,
    .wp-compliance h2,
    .wp-contact h2 {
        font-size: 30px;
    }

    .wp-whatsapp {
        right: 16px;
        bottom: 18px;
    }

    .wp-whatsapp-button {
        width: 58px;
        height: 58px;
    }

    .wp-whatsapp-panel {
        width: calc(100vw - 28px);
        right: -2px;
        bottom: 78px;
    }

    #scrollTopBtn {
        right: 88px;
        bottom: 21px;
        width: 50px;
        height: 50px;
    }
}


/* =========================================================
   AUTO IMAGE SLIDER - HERO Y MEDICINA
========================================================= */

.wp-auto-slider {
    position: relative;
}

.wp-slider-images {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    border-radius: var(--wp-radius-lg);
    box-shadow: var(--wp-shadow-lg);
    border: 8px solid #ffffff;
    background: #eef3f7;
}

.wp-slider-images::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 43, 76, 0.22), rgba(217, 35, 50, 0.07));
    z-index: 3;
    pointer-events: none;
}

.wp-slider-images img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    inset: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, visibility 0.9s ease, transform 4.5s ease;
}

.wp-slider-images img.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1);
}

.wp-medical-visual .wp-slider-images {
    min-height: 520px;
}

.wp-medical-visual .wp-slider-images img {
    height: 520px;
}

.wp-slider-dots {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--wp-shadow-sm);
}

.wp-slider-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(8, 43, 76, 0.25);
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wp-slider-dots button.active {
    width: 24px;
    background: var(--wp-red);
}

/* Ajuste específico para que los dots del hero no choquen con la barra azul */
.wp-hero-visual .wp-slider-dots {
    bottom: 92px;
}

/* Ajuste específico para medicina */
.wp-medical-visual .wp-slider-dots {
    bottom: 96px;
}

/* Evita conflicto con estilos anteriores del hero */
.wp-hero-image {
    display: none;
}

.wp-hero-visual .wp-slider-images {
    position: relative;
}

.wp-hero-visual .wp-slider-images img {
    height: 560px;
}

@media (max-width: 767px) {
    .wp-hero-visual {
        padding-bottom: 0;
    }

    .wp-slider-images img,
    .wp-hero-visual .wp-slider-images img {
        height: 380px;
    }

    .wp-medical-visual .wp-slider-images {
        min-height: 360px;
    }

    .wp-medical-visual .wp-slider-images img {
        height: 360px;
    }

    /* Dots del hero debajo de la imagen, no encima del texto */
    .wp-hero-visual .wp-slider-dots {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: max-content;
        margin: 12px auto 0;
        z-index: 5;
    }

    /* Dots de medicina también debajo de la imagen */
    .wp-medical-visual .wp-slider-dots {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: max-content;
        margin: 12px auto 0;
        z-index: 5;
    }

    .wp-hero-emergency {
        margin-top: 14px;
        padding: 16px;
        border-radius: 22px;
        align-items: center;
        text-align: left;
    }

    .wp-hero-emergency span {
        display: block;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    .wp-hero-emergency {
        padding: 15px;
        gap: 10px;
    }

    .wp-hero-emergency i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 19px;
    }

    .wp-hero-emergency span {
        font-size: 14px;
    }

    .wp-hero-visual .wp-slider-dots,
    .wp-medical-visual .wp-slider-dots {
        margin-top: 10px;
    }
}


/* =========================================================
   QUIÉNES SOMOS
========================================================= */

.wp-about {
    padding: 100px 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(217, 35, 50, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
    overflow: hidden;
}

.wp-about-content h2 {
    color: var(--wp-dark);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 900;
    margin-bottom: 20px;
}

.wp-about-content p {
    color: var(--wp-muted);
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 16px;
}

.wp-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.wp-about-values div {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--wp-shadow-sm);
    transition: var(--wp-transition);
}

.wp-about-values div:hover {
    transform: translateY(-5px);
    box-shadow: var(--wp-shadow-md);
}

.wp-about-values i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--wp-red-soft);
    color: var(--wp-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 14px;
}

.wp-about-values strong {
    display: block;
    color: var(--wp-dark);
    font-weight: 900;
    margin-bottom: 6px;
}

.wp-about-values span {
    display: block;
    color: var(--wp-muted);
    font-size: 13px;
    line-height: 1.5;
}

.wp-about-panel {
    position: relative;
}

.wp-about-panel::before {
    content: "";
    position: absolute;
    inset: 32px 32px -22px -22px;
    background: linear-gradient(135deg, var(--wp-primary), var(--wp-red));
    border-radius: 34px;
    opacity: 0.92;
    transform: rotate(-2deg);
}

.wp-about-main-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    padding: 36px;
    box-shadow: var(--wp-shadow-lg);
    overflow: hidden;
}

.wp-about-main-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(217, 35, 50, 0.08);
}

.wp-about-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: var(--wp-blue-soft);
    color: var(--wp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    margin-bottom: 24px;
}

.wp-about-main-card h3 {
    position: relative;
    z-index: 2;
    color: var(--wp-dark);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 900;
    margin-bottom: 14px;
}

.wp-about-main-card p {
    position: relative;
    z-index: 2;
    color: var(--wp-muted);
    line-height: 1.75;
    margin: 0;
}

.wp-about-mini-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: -8px;
    padding: 0 24px;
}

.wp-about-mini-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--wp-shadow-md);
}

.wp-about-mini-card span {
    display: inline-flex;
    color: var(--wp-red);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.wp-about-mini-card strong {
    display: block;
    color: var(--wp-dark);
    font-weight: 900;
    margin-bottom: 4px;
}

.wp-about-mini-card small {
    display: block;
    color: var(--wp-muted);
    line-height: 1.45;
}

@media (max-width: 991px) {
    .wp-about {
        text-align: center;
    }

    .wp-about-values i {
        margin-left: auto;
        margin-right: auto;
    }

    .wp-about-panel {
        margin-top: 20px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .wp-about {
        padding: 72px 0;
    }

    .wp-about-values {
        grid-template-columns: 1fr;
    }

    .wp-about-panel::before {
        inset: 24px 16px -16px -12px;
    }

    .wp-about-main-card {
        padding: 28px;
        border-radius: 28px;
    }

    .wp-about-main-card h3 {
        font-size: 26px;
    }

    .wp-about-mini-grid {
        grid-template-columns: 1fr;
        padding: 0 14px;
    }
}


.wp-clients {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(10, 79, 153, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.wp-clients-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.wp-client-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(13, 31, 61, 0.08);
    border-radius: 22px;
    padding: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 16px 40px rgba(13, 31, 61, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    cursor: default;
}

.wp-client-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 79, 153, 0.25);
    box-shadow: 0 22px 55px rgba(13, 31, 61, 0.12);
}

.wp-client-logo {
    width: 140px;
    height: 84px;
    border-radius: 16px;
    background: #f4f7fb;
    border: 1px solid rgba(13, 31, 61, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
    position: relative;
}

.wp-client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.wp-client-logo.no-logo {
    padding: 0;
    background:
        linear-gradient(135deg, rgba(10, 79, 153, 0.12), rgba(10, 79, 153, 0.04));
}

.wp-client-initials {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.45rem;
    color: #0A4F99;
    letter-spacing: .6px;
}

.wp-client-card::after {
    content: attr(data-client);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    background: #10233f;
    color: #ffffff;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 8px 10px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(13, 31, 61, 0.2);
}

.wp-client-card::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%) translateY(6px);
    border: 6px solid transparent;
    border-top-color: #10233f;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 10;
}

.wp-client-card:hover::after,
.wp-client-card:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1199px) {
    .wp-clients-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .wp-clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .wp-clients {
        padding: 70px 0;
    }

    .wp-clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .wp-client-card {
        height: 108px;
        border-radius: 18px;
        padding: 8px;
    }

    .wp-client-logo {
        width: 120px;
        height: 72px;
        padding: 6px;
    }

    .wp-client-initials {
        font-size: 1.2rem;
    }

    .wp-client-card::after,
    .wp-client-card::before {
        display: none;
    }
}


/* ===============================
   FOOTER
================================ */

.wp-footer {
    position: relative;
    background: radial-gradient(circle at top left, rgba(122, 45, 255, 0.12), transparent 34%),
                linear-gradient(135deg, #06111f 0%, #020b14 100%);
    color: #ffffff;
    padding: 76px 0 28px;
    overflow: hidden;
}

.wp-footer-main {
    padding-bottom: 34px;
}

.wp-footer-brand {
    max-width: 380px;
}

.wp-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 22px;
}

.wp-footer-logo img {
    width: 98px;
    max-width: 100%;
    height: auto;
    display: block;
}

.wp-footer-brand p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.wp-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wp-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.055);
    transition: all 0.2s ease;
}

.wp-footer-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.wp-footer-column h6,
.wp-footer-contact h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
}

.wp-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-footer-column ul li {
    margin-bottom: 13px;
}

.wp-footer-column ul li:last-child {
    margin-bottom: 0;
}

.wp-footer-column ul li a {
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.wp-footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 3px;
}

/* Contacto */
.wp-footer-contact {
    width: 100%;
}

.wp-footer-contact-list {
    display: grid;
    gap: 16px;
}

.wp-footer-contact-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.wp-footer-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eaa0b4;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.055);
    flex-shrink: 0;
}

.wp-footer-contact-info {
    min-width: 0;
}

.wp-footer-contact-info small {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.wp-footer-contact-info a,
.wp-footer-contact-info p {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.35;
    margin: 0;
    word-break: break-word;
}

.wp-footer-contact-info a:hover {
    color: #ffffff;
}

/* Bottom */
.wp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.wp-footer-copy {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.5;
}

.wp-powered-by {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.wp-powered-by:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

.wp-powered-by img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.wp-powered-by span {
    font-weight: 400;
}

.wp-powered-by strong {
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* ===============================
   RESPONSIVE FOOTER
================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .wp-footer {
        padding-top: 64px;
        text-align: center;
    }

    .wp-footer-brand {
        max-width: 520px;
        margin: 0 auto;
    }

    .wp-footer-logo {
        justify-content: center;
    }

    .wp-footer-logo img {
        margin: 0 auto;
    }

    .wp-footer-brand p {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-footer-social {
        justify-content: center;
    }

    .wp-footer-column {
        margin-top: 8px;
    }

    .wp-footer-column h6,
    .wp-footer-contact h6 {
        text-align: center;
        margin-bottom: 16px;
    }

    .wp-footer-column ul {
        display: grid;
        gap: 9px;
        justify-content: center;
        text-align: center;
    }

    .wp-footer-column ul li {
        margin-bottom: 0;
    }

    .wp-footer-column ul li a:hover {
        padding-left: 0;
    }

    .wp-footer-contact {
        max-width: 420px;
        margin: 10px auto 0;
    }

    .wp-footer-contact-list {
        gap: 14px;
    }

    .wp-footer-contact-item {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .wp-footer {
        padding: 52px 0 96px;
    }

    .wp-footer-main {
        padding-bottom: 28px;
    }

    .wp-footer-brand p {
        max-width: 310px;
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .wp-footer-logo img {
        width: 88px;
    }

    .wp-footer-social {
        gap: 10px;
        margin-bottom: 4px;
    }

    .wp-footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .wp-footer-column h6,
    .wp-footer-contact h6 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .wp-footer-column ul {
        gap: 10px;
    }

    .wp-footer-column ul li a {
        font-size: 14px;
    }

    .wp-footer-contact {
        max-width: 100%;
        margin-top: 4px;
    }

    .wp-footer-contact-list {
        max-width: 305px;
        margin: 0 auto;
        gap: 13px;
    }

    .wp-footer-contact-item {
        width: 100%;
        max-width: none;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 11px;
        padding: 0;
        align-items: center;
    }

    .wp-footer-contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .wp-footer-contact-info small {
        font-size: 11.5px;
        margin-bottom: 2px;
    }

    .wp-footer-contact-info a,
    .wp-footer-contact-info p {
        font-size: 14px;
        line-height: 1.35;
    }

    .wp-footer-bottom {
        flex-direction: column;
        gap: 11px;
        padding-top: 22px;
        max-width: 310px;
        margin: 0 auto;
    }

    .wp-powered-by {
        order: 1;
        font-size: 13px;
    }

    .wp-powered-by img {
        width: 24px;
        height: 24px;
    }

    .wp-footer-copy {
        order: 2;
        max-width: 280px;
        font-size: 12.5px;
    }
}

/* Mobile pequeño */
@media (max-width: 420px) {
    .wp-footer {
        padding-top: 46px;
    }

    .wp-footer-logo img {
        width: 82px;
    }

    .wp-footer-brand p {
        max-width: 285px;
        font-size: 13.5px;
    }

    .wp-footer-contact-list {
        max-width: 285px;
    }

    .wp-footer-contact-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

    .wp-footer-contact-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .wp-footer-contact-info a,
    .wp-footer-contact-info p {
        font-size: 13.5px;
    }

    .wp-powered-by {
        gap: 7px;
        font-size: 12.5px;
    }

    .wp-powered-by img {
        width: 22px;
        height: 22px;
    }

    .wp-footer-copy {
        font-size: 12px;
    }
}