/* ============================================
   RIDE CHECK - Estilos Compartidos
   Sitio Web Institucional y Comercial
   ============================================ */

/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafbfc;
}

/* ============================================
   COLORES PRINCIPALES
   ============================================ */

:root {
    --layout-max-width: 1200px;
    --layout-gutter-desktop: 20px;
    --layout-gutter-mobile: 16px;
    --section-space-lg: 90px;
    --section-space-md: 72px;
    --section-space-sm: 48px;
    --color-primary: #1e5ba8;      /* Azul institucional */
    --color-primary-dark: #154080;  /* Azul oscuro */
    --color-primary-light: #2b7ec7; /* Azul claro */
    --accent-color: #F59E0B;
    --accent-color-hover: #D97706;
    --accent-text-dark: #1f2937;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg-light: #f9f9f9;
    --color-bg-white: #ffffff;
    --color-border: #e0e0e0;
    --color-success: #27ae60;
    --color-gray-placeholder: #e8e8e8;
    --rca-blue: #0011AD;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */

header {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.header-container .btn {
    margin-left: 0;
    flex: 0 0 auto;
}

.logo:hover {
    color: var(--color-primary-dark);
}

nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

nav a:hover {
    color: var(--color-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--color-primary);
}

nav a.active::after {
    width: 100%;
}

/* ============================================
   CONTENEDOR PRINCIPAL
   ============================================ */

main {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    padding: 0 var(--layout-gutter-desktop);
    min-height: calc(100vh - 250px);
}

.container {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    padding: 0 var(--layout-gutter-desktop);
}

.section-inner {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    padding-left: var(--layout-gutter-desktop);
    padding-right: var(--layout-gutter-desktop);
}

.section-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
}

.section-contained {
    width: 100%;
    position: relative;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.section-spacing-lg {
    padding-top: var(--section-space-lg);
    padding-bottom: var(--section-space-lg);
}

.section-spacing-md {
    padding-top: var(--section-space-md);
    padding-bottom: var(--section-space-md);
}

.section-spacing-sm {
    padding-top: var(--section-space-sm);
    padding-bottom: var(--section-space-sm);
}

/* ============================================
   SECCIONES Y ESPACIADO
   ============================================ */

section {
    padding: var(--section-space-lg) 0;
}

section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.8px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

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

.section-header--center {
    text-align: center;
}

.section-header--left {
    text-align: left;
}

.section-header--center .section-title,
.section-header--center .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header--left .section-title,
.section-header--left .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-header .section-subtitle {
    margin-bottom: 0;
}

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

.about-who-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.about-who-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-who-right {
    min-width: 0;
    height: 100%;
    display: flex;
}

.about-who-title,
.about-who-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.about-who-copy {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 62ch;
}

.about-who-copy-last {
    margin-bottom: 0;
}

.about-who-image-horizontal,
.about-who-image-vertical {
    width: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.about-who-image-horizontal {
    margin-top: 24px;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    object-position: center;
}

.about-who-image-vertical {
    height: 100%;
    border-radius: 20px;
    object-position: center;
}

/* ============================================
   NUESTROS VALORES
   ============================================ */

.about-values-section {
    position: relative;
}

.about-values-hero-image {
    width: 100%;
    max-width: 1040px;
    height: auto;
    display: block;
    margin: 32px auto 48px auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.about-values-section .list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    height: 100%;
    margin-bottom: 0;
    padding: 24px;
    background-color: #fff;
    border-left: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: aboutValuesFadeUp 0.6s ease both;
}

.about-values-section .list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-values-section .list-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #1F3B73;
    color: #fff;
    font-size: 22px;
}

.about-values-section .list-item:hover .list-item-icon {
    background: #162A4D;
}

.about-values-section .list-item-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.about-values-section .list-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-values-section .list-item-content h4 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #1a2b4c;
}

.about-values-section .list-item-content p {
    margin-bottom: 0;
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
}

.coverage-section-subtitle {
    margin-bottom: 18px;
}

.coverage-section-cta {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.coverage-section-cta__text {
    margin: 0;
    color: #5f6f82;
    font-size: 15px;
    line-height: 1.7;
}

.coverage-section-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.coverage-section-cta__link:hover {
    color: var(--color-primary-dark);
}

.coverage-module {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.coverage-module__map,
.coverage-module__info {
    min-width: 0;
}

.coverage-map-card {
    height: 100%;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.96) 100%);
    border: 1px solid rgba(30, 91, 168, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.coverage-map-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(30, 91, 168, 0.08);
    color: #1a2b4c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.coverage-map-card__graphic {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.coverage-map-card__graphic path,
.coverage-map-card__graphic circle {
    transition: opacity 0.25s ease;
}

.coverage-map-card__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 18px;
}

.coverage-map-card__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #516072;
    font-size: 13px;
    font-weight: 600;
}

.coverage-map-card__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.coverage-map-card__legend-dot--primary {
    background: #1e5ba8;
}

.coverage-map-card__legend-dot--secondary {
    background: rgba(31, 59, 115, 0.26);
    border: 1px solid rgba(31, 59, 115, 0.18);
}

.coverage-module__info {
    display: grid;
    gap: 0;
    padding: 12px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(30, 91, 168, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.coverage-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(30, 91, 168, 0.10);
}

.coverage-info-item__icon {
    width: 104px;
    height: 104px;
    min-width: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coverage-info-item__icon img {
    width: 96px;
    height: 96px;
    display: block;
    object-fit: contain;
}

.coverage-info-item__content h3 {
    margin: 0 0 8px;
    color: #14213a;
    font-size: 20px;
}

.coverage-info-item__content p {
    margin: 0;
    color: #627287;
    font-size: 15px;
    line-height: 1.7;
}

.coverage-module__actions {
    padding: 24px 0 14px;
    display: flex;
    justify-content: center;
}

.coverage-module__button {
    width: 100%;
    max-width: 260px;
    padding: 15px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(30, 91, 168, 0.16);
}

.coverage-module__button:hover {
    box-shadow: 0 18px 36px rgba(21, 64, 128, 0.18);
}

@keyframes aboutValuesFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */

h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.6px;
    line-height: 1.25;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    letter-spacing: 0.3px;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    display: inline-block;
    border: 0.3333px solid rgb(181, 114, 20);
    box-shadow: none;
    filter: drop-shadow(7px 7px 5px rgba(245, 158, 11, 0.30));
}

.btn-primary:hover {
    background-color: var(--accent-color-hover);
    color: white;
    transform: translateY(-1px);
    border: 0.3333px solid rgb(181, 114, 20);
    box-shadow: none;
    filter: drop-shadow(7px 7px 5px rgba(217, 119, 6, 0.30));
}

.btn-secondary {
    background-color: #f0f4f8;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 91, 168, 0.25);
}

.btn-inverse {
    background-color: white;
    color: var(--color-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-inverse:hover {
    background-color: #f9fafb;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* ============================================
   HERO / INTRO SECTIONS
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero--full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 680px;
    display: flex;
    align-items: center;
}

.section--full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -500px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    color: white;
    font-size: 56px;
    margin-bottom: 28px;
    letter-spacing: -1.2px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-highlight {
    display: block;
    color: var(--accent-color, #F59E0B);
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-support {
    display: block;
    color: rgba(255, 255, 255, 0.94);
}

/* ============================================
   HOME: PRUEBA SOCIAL Y RESEÑAS
   ============================================ */

.hero-enhanced-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-enhanced-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-trust-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 40px rgba(7, 20, 43, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    animation: fadeSlideUp 0.75s ease-out both;
    animation-delay: 0.15s;
}

.hero-trust-badge strong {
    font-size: 14px;
    letter-spacing: 0.2px;
}

.hero-trust-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.hero-enhanced-proof {
    display: flex;
    justify-content: center;
}

.google-proof-card {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    color: var(--accent-text-dark);
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 22px 48px rgba(13, 31, 59, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeSlideUp 0.8s ease-out both;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero .google-proof-card,
.hero .google-proof-card:hover {
    color: #1F2937;
}

.hero .google-proof-card__eyebrow,
.hero .google-proof-card__rating,
.hero .google-proof-card__rating-score,
.hero .google-proof-card__rating-note,
.hero .google-proof-card__text,
.hero .google-proof-card__cta {
    color: #1F2937;
    opacity: 1;
}

.hero .google-proof-card__text {
    color: #374151;
    margin-bottom: 0;
    max-width: none;
    z-index: auto;
}

.hero .google-proof-card__cta {
    color: #1e5ba8;
}

.hero .google-proof-card__star {
    color: #FBBC05;
}

.google-proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(13, 31, 59, 0.24);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--accent-text-dark);
}

.google-proof-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.google-proof-card__logo {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.google-proof-card__logo-letter--blue {
    color: #4285F4;
}

.google-proof-card__logo-letter--red {
    color: #EA4335;
}

.google-proof-card__logo-letter--yellow {
    color: #FBBC05;
}

.google-proof-card__logo-letter--green {
    color: #34A853;
}

.google-proof-card__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(30, 91, 168, 0.08);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
}

.google-proof-card__eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    opacity: 1;
}

.google-proof-card__rating {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 30px;
    line-height: 1.2;
    color: #1F2937;
    letter-spacing: -0.6px;
    opacity: 1;
}

.google-proof-card__rating-score {
    color: #1F2937;
}

.google-proof-card__star {
    color: #FBBC05;
}

.google-proof-card__rating-note {
    color: #1F2937;
    font-size: 18px;
    font-weight: 600;
}

.google-proof-card__text {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.75;
    opacity: 1;
}

.google-proof-card__cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    color: #1e5ba8;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(30, 91, 168, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 255, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 1;
}

.google-proof-card__cta::after {
    content: '↗';
    font-size: 13px;
    transition: transform 0.3s ease;
}

.google-proof-card:hover .google-proof-card__cta {
    color: var(--color-primary-dark);
    border-color: rgba(30, 91, 168, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 242, 255, 1) 100%);
    box-shadow: 0 10px 22px rgba(30, 91, 168, 0.12);
}

.google-proof-card:hover .google-proof-card__cta::after {
    transform: translateX(3px);
}

.reviews-slider-section {
    background: #ffffff;
    background-color: #ffffff;
}

.reviews-slider-section .container,
.reviews-slider-section .reviews-slider,
.reviews-slider-section .reviews-slider__viewport {
    background: #ffffff;
    background-color: #ffffff;
}

.reviews-slider {
    position: relative;
}

.reviews-slider__viewport {
    --reviews-card-width: 320px;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
    cursor: grab;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    user-select: none;
}

.reviews-slider__viewport::-webkit-scrollbar {
    display: none;
}

.reviews-slider__viewport:active,
.reviews-slider__viewport.is-dragging {
    cursor: grabbing;
}

.reviews-slider__track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 6px 0;
    will-change: transform;
}

.review-card {
    width: var(--reviews-card-width);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 91, 168, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(18, 34, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeSlideUp 0.8s ease-out both;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(18, 34, 61, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
}

.review-card__stars {
    color: var(--accent-color);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-card__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #475467;
    flex-grow: 1;
}

.review-card__meta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
}

.review-card__meta span:last-child {
    color: #6b7280;
    font-weight: 600;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TARJETAS (CARDS)
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 50px 0;
}

.card {
    background-color: var(--color-bg-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 91, 168, 0.12);
    border-color: #e8e8e8;
}

.card-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 32px 28px;
    text-align: center;
    flex-shrink: 0;
}

.card-header h3 {
    color: white;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.card-body {
    padding: 32px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body p {
    margin: 0 0 18px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    flex-grow: 1;
}

/* ============================================
   LISTAS Y ITEMS
   ============================================ */

ul, ol {
    margin-left: 30px;
    margin-bottom: 24px;
}

li {
    margin-bottom: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 15px;
}

.list-item {
    display: flex;
    gap: 22px;
    margin-bottom: 28px;
    padding: 28px;
    background-color: var(--color-bg-white);
    border-left: 5px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.list-item:hover {
    box-shadow: 0 6px 16px rgba(30, 91, 168, 0.1);
    transform: translateX(4px);
}

.list-item-icon {
    color: white;
    background-color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
}

.list-item-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 17px;
}

.list-item-content p {
    margin-bottom: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   PLACEHOLDERS DE IMÁGENES
   ============================================ */

.image-placeholder {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef7 100%);
    border: 1px solid #e0e5ed;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    aspect-ratio: 4/3;
    height: 260px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e8eef7 0%, #dfe6f3 100%);
    border-color: #d0d8ea;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

img[src*="nosotros-diagnostico-escaner.jpg"] {
    object-position: 75% 35%;
}

.image-placeholder-large {
    aspect-ratio: 16/9;
}

.image-placeholder-small {
    aspect-ratio: 1;
}

/* ============================================
   FORMULARIOS
   ============================================ */

form {
    max-width: 650px;
    margin: 50px auto;
}

.form-group {
    margin-bottom: 28px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 15px;
    letter-spacing: -0.2px;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: var(--color-bg-white);
    color: var(--color-text);
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #f9fafb;
    box-shadow: 0 0 0 4px rgba(30, 91, 168, 0.08);
}

textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

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

footer {
    position: relative;
    background: #244A7A;
    color: white;
    padding: 60px 20px 40px;
    margin-top: 0;
}

footer::before {
    content: none;
    display: none;
}

footer .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    justify-content: stretch;
    gap: 60px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

footer .container > :first-child {
    justify-self: start;
    text-align: left;
}

footer .container > :nth-child(2) {
    justify-self: center;
    text-align: center;
}

footer .container > :nth-child(3) {
    justify-self: end;
    text-align: right;
}

.footer-socials,
.footer-brandmark,
.footer-bottom {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

footer h4 {
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

footer p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.75;
}

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

footer ul li {
    margin-bottom: 8px;
    margin-left: 0;
}

footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.25s ease, opacity 0.25s ease;
    font-size: 14px;
}

footer a:hover {
    color: white;
    opacity: 1;
    text-decoration: none;
}

.footer-bottom {
    padding-top: 0;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.footer-socials a {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.01em;
}

.footer-socials a:hover {
    color: #FFFFFF;
}

.footer-brandmark {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin: 20px auto 14px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.footer-brandmark:hover {
    color: white;
    text-decoration: none;
}

.footer-brandmark img {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.98;
}

.footer-brandmark span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-legal-bar {
    margin-top: 18px;
    padding: 18px 0 0;
    background: #244A7A;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal-bar__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-legal-bar__text {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.58;
    text-align: center;
}

.footer-zonas-seo {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-zonas-title {
    margin-bottom: 6px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}

.footer-zonas-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.footer-zonas-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-zonas-links a:hover {
    color: #F59E0B;
}

@media (max-width: 1080px) {
    footer .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 28px;
        max-width: 760px;
    }

    .about-who-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-who-copy {
        max-width: none;
    }
}

/* ============================================
   TABLA DE CONTENIDOS Y FAQs
   ============================================ */

.faq-item {
    background-color: var(--color-bg-white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(30, 91, 168, 0.08);
    border-color: #e0e8f0;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary-dark);
    transition: background-color 0.3s ease;
    font-size: 16px;
    letter-spacing: -0.2px;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: #666;
    border-top: 1px solid #e8e8e8;
    font-size: 15px;
    line-height: 1.8;
}

.process-stepper-section {
    background-color: #f0f4f8;
}

.process-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
    margin-top: 26px;
}

.process-stepper::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(90deg, rgba(30, 91, 168, 0.14) 0%, rgba(30, 91, 168, 0.28) 50%, rgba(30, 91, 168, 0.14) 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    min-width: 0;
    outline: none;
}

.process-step__summary {
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.process-step:hover .process-step__summary,
.process-step:focus-within .process-step__summary {
    transform: translateY(-2px);
    opacity: 1;
}

.process-step__number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--color-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 0 8px #f0f4f8;
}

.process-step__icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    opacity: 0.72;
}

.process-step__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-step h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    color: #1f2937;
}

.process-step__description {
    position: static;
    width: auto;
    margin: 0;
    padding: 0;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .header-container {
        flex-direction: row;
        height: auto;
        padding: 14px 20px;
        gap: 0;
    }

    .logo {
        font-size: 20px;
        margin-right: 20px;
    }

    nav {
        margin: 0;
        flex: 1;
    }

    nav ul {
        width: 100%;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 13px;
    }

    .header-container .btn {
        margin-left: 20px;
        padding: 9px 16px;
        font-size: 13px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    h2 {
        font-size: 28px;
        margin-top: 28px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .about-who-layout {
        gap: 28px;
    }

    .about-who-subtitle {
        margin-bottom: 36px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-values-hero-image {
        margin: 28px auto 40px auto;
    }

    .coverage-section-cta {
        margin-bottom: 38px;
    }

    .coverage-module {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero {
        padding: 100px 0;
    }

    .hero--full-bleed {
        min-height: 560px;
    }

    .hero::before {
        right: -400px;
        width: 600px;
        height: 600px;
    }

    .hero h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-enhanced-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .google-proof-card {
        max-width: 540px;
        padding: 24px;
    }

    .google-proof-card__rating {
        font-size: 26px;
    }

    .review-card {
        min-height: 220px;
        padding: 24px;
    }

    .review-card__text {
        font-size: 17px;
    }

    section {
        padding: 70px 0;
    }

    .section-spacing-lg {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-spacing-md {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-spacing-sm {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-inner {
        padding-left: var(--layout-gutter-mobile);
        padding-right: var(--layout-gutter-mobile);
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }

    .card-body {
        padding: 24px;
    }

    .card-header {
        padding: 24px 20px;
    }

    footer .container {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 30px;
        max-width: none;
    }

    footer {
        padding: 62px 0 26px;
    }

    footer h4 {
        margin-bottom: 12px;
        font-size: 14px;
    }

    footer p,
    footer a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 0;
        font-size: 11px;
    }

    .footer-socials {
        gap: 10px 18px;
        margin-top: 26px;
        margin-bottom: 16px;
    }

    .footer-brandmark {
        margin: 16px 0 12px;
    }

    .footer-brandmark img {
        height: 28px;
    }

    .footer-brandmark span {
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    .footer-legal-bar {
        margin-top: 16px;
        padding-top: 16px;
    }

    .footer-legal-bar__inner {
        padding: 0 16px;
    }

    .footer-legal-bar__text {
        font-size: 11px;
        line-height: 1.58;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        padding: 13px 18px;
        font-size: 14px;
    }

    .process-stepper {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .process-stepper::before {
        display: none;
    }

    .process-step {
        padding-left: 18px;
    }

    .process-step::before {
        content: "";
        position: absolute;
        left: 9px;
        top: 18px;
        bottom: -10px;
        width: 2px;
        background: rgba(30, 91, 168, 0.14);
    }

    .process-step:last-child::before {
        display: none;
    }

    .process-step__summary {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
    }

    .process-step__number {
        width: 30px;
        height: 30px;
        box-shadow: none;
        flex: 0 0 auto;
    }

    .process-step__icon {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
    }

    .process-step h3 {
        font-size: 14px;
    }

    .process-step__description {
        width: auto;
        margin: 6px 0 0 0;
        padding: 0 0 0 56px;
        color: #5f6b7a;
        text-align: left;
        max-width: none;
    }

    .list-item {
        padding: 20px;
        gap: 16px;
        margin-bottom: 24px;
    }

    .list-item-icon {
        font-size: 16px;
        width: 36px;
        height: 36px;
    }

    p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    li {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        padding: 12px 20px;
        height: auto;
        gap: 12px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 0.3px;
        margin-right: 0;
        align-self: flex-start;
    }

    nav {
        margin: 0;
        width: 100%;
    }

    nav ul {
        gap: 8px;
        font-size: 13px;
        justify-content: center;
    }

    nav a {
        font-size: 13px;
    }

    .header-container .btn {
        width: 100%;
        margin-left: 0;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 22px;
        margin-top: 22px;
        margin-bottom: 14px;
    }

    h3 {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .about-who-layout {
        gap: 24px;
    }

    .about-who-copy {
        font-size: 15px;
    }

    .about-who-subtitle {
        margin-bottom: 28px;
    }

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

    .about-values-hero-image {
        margin: 24px auto 32px auto;
        border-radius: 14px;
    }

    .about-values-section .list-item {
        padding: 22px;
    }

    .about-values-section .list-item-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .coverage-section-subtitle {
        margin-bottom: 16px;
    }

    .coverage-section-cta {
        margin-bottom: 32px;
    }

    .coverage-section-cta__text {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .coverage-section-cta__link {
        width: auto;
    }

    .coverage-map-card {
        padding: 18px;
        border-radius: 20px;
    }

    .coverage-map-card__legend {
        gap: 10px 14px;
        margin-top: 16px;
    }

    .coverage-info-item {
        padding: 18px 0;
        gap: 16px;
    }

    .coverage-info-item__icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .coverage-info-item__icon img {
        width: 72px;
        height: 72px;
    }

    .coverage-module__info {
        padding: 10px 18px;
        border-radius: 20px;
    }

    .coverage-info-item__content h3 {
        font-size: 18px;
    }

    .coverage-module__actions {
        padding: 20px 0 10px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero--full-bleed {
        min-height: 460px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-enhanced-layout {
        gap: 26px;
    }

    .hero-trust-badge {
        width: 100%;
        max-width: 320px;
        padding: 12px 16px;
    }

    .google-proof-card {
        padding: 22px;
        border-radius: 18px;
    }

    .google-proof-card__header {
        align-items: flex-start;
    }

    .google-proof-card__logo {
        font-size: 24px;
    }

    .google-proof-card__rating {
        font-size: 24px;
    }

    .google-proof-card__text {
        font-size: 14px;
    }

    .reviews-slider__track {
        gap: 18px;
    }

    .review-card {
        min-height: 210px;
        padding: 22px;
        border-radius: 18px;
    }

    .review-card__text {
        font-size: 16px;
    }

    .review-card__meta {
        font-size: 12px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    main {
        padding: 0 var(--layout-gutter-mobile);
        min-height: calc(100vh - 220px);
    }

    .container {
        padding: 0 var(--layout-gutter-mobile);
    }

    .process-step {
        padding-left: 16px;
    }

    .process-step::before {
        left: 8px;
    }

    .process-step__summary {
        padding: 11px 12px;
        gap: 9px;
    }

    .process-step__number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .process-step__description {
        padding-left: 52px;
        font-size: 12px;
    }

    .list-item {
        padding: 18px;
        border-left-width: 4px;
        gap: 14px;
        margin-bottom: 20px;
    }

    .list-item-icon {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }

    .card-body {
        padding: 20px;
    }

    .card-header {
        padding: 20px 18px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px 18px;
        font-size: 14px;
    }

    p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    li {
        font-size: 14px;
        margin-bottom: 11px;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */

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

.text-primary {
    color: var(--color-primary);
}

.font-bold {
    font-weight: 700;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.gap-20 {
    gap: 20px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-trust-badge,
    .google-proof-card,
    .review-card {
        animation: none;
    }

    .google-proof-card,
    .review-card,
    .google-proof-card__cta,
    .google-proof-card__cta::after {
        transition: none;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(37,211,102,0.32);
    white-space: nowrap;
}

.whatsapp-float:hover {
    color: white;
    box-shadow: 0 8px 22px rgba(37,211,102,0.36);
}

.whatsapp-float__icon {
    width: 24px;
    height: 24px;
}
