@charset "utf-8";
/* CSS Document */

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

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #F5F7FA;
    color: #2D2E32;
    line-height: 1.5;
}

a {
    color: #2D2E32;
    text-decoration: none;
}

/* Utilidades */
.fs-section-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* ========== HEADER ========== */
.fs-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.fs-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fs-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fs-logo img {
    height: 33px;
    width: auto;
    margin-bottom: -3px;
}

.fs-logo-text {
    font-weight: 700;
    font-size: 2.1rem;
    color: #111827;
    margin-left: -2px;
}

.fs-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fs-nav-link {
    font-size: 0.95rem;
    text-decoration: none;
    color: #2D2E32;
}

.fs-btn-outline {
    border: 1px solid #1A73E8;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.fs-btn-primary {
    background-color: #1A73E8;
    color: #ffffff;
    padding: 0.45rem 1rem;
    border-radius: 5px;
}

.fs-btn-primary:hover {
    background-color: #1A73E8;
    color: #ffffff;
}

/* Toggle móvil (por defecto oculto en desktop) */
.fs-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.fs-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #2D2E32;
    margin: 4px 0;
    border-radius: 999px;
}

/* Menú móvil */
.fs-mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.fs-mobile-menu.open {
    display: flex;
}

.fs-mobile-link {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.03);
    text-decoration: none;
    color: #2D2E32;
    font-size: 0.95rem;
}

.fs-mobile-link:hover {
    background: #F5F7FA;
}

.fs-mobile-signin {
    font-weight: 600;
    color: #1A73E8;
}

/* ========== HERO (INDEX) ========== */
.fs-hero {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Imagen de fondo dentro del hero (solo desktop, en móvil la quitaremos) */
.fs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero-sample.jpg");
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.1);
    background-blend-mode: overlay;
    filter: blur(1px);
    z-index: 1;
}

.fs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.fs-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2D2E32;
    margin-bottom: 10px;
}

.fs-hero-content p {
    font-size: 1rem;
    color: #3b3c40;
    margin-bottom: 20px;
}

/* Buscador */
.fs-search-bar {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 10px;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    flex-wrap: wrap;
    border: 1px solid #d3d4d5;
}

.fs-field {
    display: flex;
    flex-direction: column;
    flex: 1 1 160px;
    min-width: 0;
}

.fs-field-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7a7b80;
    margin-left: 0.9rem;
    margin-bottom: 0.15rem;
}

.fs-field select {
    border: 0;
    padding: 0.5rem 0.9rem 0.6rem;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    outline: none;
    color: #2D2E32;
}

.fs-field input {
    border-left: 2px solid #d3d4d5;
    border-right: 0;
    border-bottom: 0;
    border-top: 0;
    padding: 0.5rem 0.9rem 0.6rem;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    outline: none;
    color: #2D2E32;
}

/* Botón buscar */
.fs-btn-search {
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    background: #17C964;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 0.95rem;
}

.fs-btn-search:hover {
    background: #12b058;
}

.fs-search-hint {
    font-size: 0.8rem;
    color: #7a7b80;
    margin-top: 0.6rem;
}

.fs-form-error {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #c0392b;
}

/* ========== POPULAR SERVICES (INDEX) ========== */
.fs-popular {
    background: #F5F7FA;
}

.fs-popular h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.fs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.fs-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.fs-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Imagen dentro de la tarjeta */
.fs-service-img {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fs-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* EFECTO DE ZOOM EN HOVER */
.fs-service-card:hover .fs-service-img img {
    transform: scale(1.08);
    opacity: 0.92;
}

.fs-service-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

.fs-service-card p {
    font-size: 0.9rem;
    color: #606167;
}

/* Links para cards */
.fs-service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.fs-view-all-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: #1A73E8;
}

.fs-view-all-link:hover {
    text-decoration: underline;
}

/* ========== FOOTER ========== */
.fs-footer {
    background: #111827;
    color: #e5e7eb;
    margin-top: 2rem;
}

.fs-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.fs-footer h4 {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
}

.fs-footer p {
    font-size: 0.9rem;
    color: #d1d5db;
}

.fs-footer ul {
    list-style: none;
}

.fs-footer li {
    margin-bottom: 0.35rem;
}

.fs-footer a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.fs-footer a:hover {
    color: #1A73E8;
}

.fs-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fs-footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 0.9rem 1.5rem 1.4rem;
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Para layout general */
.fs-popular,
.fs-hero {
    flex: none;
}

main {
    flex: 1;
}

/* ========== SERVICE.PHP – HERO Y DESCRIPCIÓN ========== */
.fs-service-hero {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.fs-service-hero-img-wrapper {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
}

.fs-service-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fs-service-description {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.fs-service-description h1 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.fs-service-subtitle {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.fs-service-text {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 720px;
}

/* ========== LISTA DE PROVEEDORES (service.php) ========== */
.fs-providers {
    background-color: #F5F7FA;
}

.fs-providers-intro {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.fs-providers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Tarjeta de proveedor: 2 columnas en desktop */
.fs-provider-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 1.5rem;
}

.fs-provider-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.fs-provider-logo img {
     width: 120px;
	  height: 120px;
	 object-fit: cover;
	  border-radius: 12px;
	  border:1px solid #e6e9ef;
  margin: 10px auto; 
	margin-top: 70%;
	
}

/* Columna derecha */
.fs-provider-main {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fs-provider-name {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Rating y estrellas */
.fs-provider-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.fs-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.fs-star {
    font-size: 0.95rem;
    line-height: 1;
}

.fs-star-full,
.fs-star-half {
    color: #FBBF24;
}

.fs-star-empty {
    color: #D1D5DB;
}

.fs-rating-score {
    font-weight: 600;
    color: #111827;
}

.fs-rating-reviews {
    color: #6b7280;
}

/* Pills */
.fs-provider-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.1rem;
}

.fs-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid transparent;
}

.fs-pill-primary {
    background-color: #EEF2FF;
    border-color: #1A73E8;
    color: #1A73E8;
}

.fs-pill-success {
    background-color: #ECFDF3;
    border-color: #17C964;
    color: #15803D;
}

.fs-pill-neutral {
    background-color: #F3F4F6;
    border-color: #D1D5DB;
    color: #4B5563;
}

/* Descripción de la compañía */
.fs-provider-description {
    font-size: 0.9rem;
    color: #4b5563;
    margin-top: 0.6rem;
}

/* Paginación */
.fs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.fs-pagination a,
.fs-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.4rem;
    border-radius: 999px;
    text-decoration: none;
    color: #4b5563;
    border: 1px solid transparent;
}

.fs-pagination a:hover {
    border-color: #D1D5DB;
}

.fs-pagination a.active {
    background-color: #1A73E8;
    color: #ffffff;
}

/* ========== GALERÍA DE TRABAJOS (THUMBS + FLECHAS) ========== */
.fs-provider-gallery {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.fs-provider-gallery-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.fs-provider-gallery-track {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

/* Thumbs 150x150 aprox */
.fs-provider-thumb {
    min-width: 150px;
    max-width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;

    cursor: pointer;
    flex-shrink: 0;
}

.fs-provider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.fs-provider-thumb:hover img {
    transform: scale(1.05);
    opacity: 0.95;
}

/* Flechas laterales del carrusel */
.fs-gallery-arrow {
    border: none;
    background-color: #ffffff;
    color: #4b5563;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fs-gallery-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

/* ========== LIGHTBOX (VENTANA EMERGENTE) ========== */
.fs-lightbox {
    position: fixed;
    inset: 0;
    display: none; /* se muestra con clase .open */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.fs-lightbox.open {
    display: flex;
}

.fs-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.85);
}

/* Contenedor de la imagen */
.fs-lightbox-inner {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    z-index: 2;
}

.fs-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 10px;
}

/* Botón cerrar (X) */
.fs-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    background: transparent;
    border: none;
    color: #f9fafb;
    font-size: 2rem;
    cursor: pointer;
}

/* Flechas del lightbox */
.fs-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background-color: rgba(15,23,42,0.85);
    color: #e5e7eb;
    font-size: 1.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fs-lightbox-prev {
    left: 24px;
}

.fs-lightbox-next {
    right: 24px;
}

/* ========== ESTILOS MÓVIL / TABLET (UN SOLO BLOQUE) ========== */
@media (max-width: 900px) {

    /* HEADER */
    .fs-logo img {
        margin-top: -4px;
    }

    .fs-nav {
        display: none;
    }

    .fs-nav-toggle {
        display: block;
    }

    /* Ajuste general de secciones */
    .fs-section-inner {
        padding: 2.5rem 1.2rem;
    }

    /* HERO - sin imagen, más compacto */
    .fs-hero {
        height: 420px;
        background: none;
    }

    .fs-hero::before {
        content: none !important;
        background: none !important;
        background-image: none !important;
        filter: none !important;
    }

    .fs-hero-inner {
        max-width: 90%;
        padding: 0;
    }

    .fs-hero-content h1 {
        font-size: 1.6rem;
    }

    /* Buscador vertical y 100% ancho botón */
    .fs-search-bar {
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .fs-field {
        flex: 1 1 auto;
    }

    .fs-field select,
    .fs-field input {
        border: 1px solid #d3d4d5;
        border-radius: 10px;
    }

    .fs-field input {
        border-left: 1px solid #d3d4d5;
    }

    .fs-btn-search {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    /* GRID de servicios (index / services.php) */
    .fs-services-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
.fs-service-card {
	
    background: #ffffff;
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.fs-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Imagen dentro de la tarjeta */
.fs-service-img {
    width: 80%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	margin: 10px auto;
}

.fs-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
	
}
	
	h3{
		
	margin:1px auto; 	
	}
    /* Footer en 2 columnas, luego se apila con wrap visual */
    .fs-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Ajuste título popular services cuando el hero es más bajo */
    .fs-popular h2 {
        margin-top: -40px;
    }

   /* Tarjeta de proveedor en 1 columna */
    .fs-provider-card {
        grid-template-columns: 1fr;   /* IMPORTANTE: rompe las 2 columnas */
        padding: 1rem;
    }

    /* Logo alineado arriba y a la izquierda */
    .fs-provider-logo {
        justify-content: flex-start;
    }

    /* Galería: ocupa el ancho completo visual del card */
    .fs-provider-gallery {
            width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
  .fs-provider-gallery-track-wrapper {
        width: 100%;
    }
    /* Opcional: thumbs un poco más pequeños en móvil */
    .fs-provider-thumb {
        min-width: 130px;
        max-width: 130px;
        height: 130px;
    }

    /* Lightbox controles más pequeños */
    .fs-lightbox-close {
        top: 12px;
        right: 16px;
    }

    .fs-lightbox-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }

    /* Footer: en móviles muy pequeños visualmente se apilan,
       pero si necesitas estrictamente 1 columna, se puede usar:
       grid-template-columns: 1fr; */
}

/* ===== MOBILE FIX: provider card en una columna + galería mobile ===== */
@media (max-width: 900px) {

    /* 1) Quitar grid y usar layout vertical */
    .fs-provider-card {
        display: block !important;        /* eliminamos grid */
        grid-template-columns: none !important;
        padding: 1rem !important;
    }

    /* 2) Logo arriba, alineado a la izquierda */
    .fs-provider-logo {
        display: flex;
        justify-content: flex-start;
		margin: 10px auto;
        margin-bottom: 0.75rem;
    }
  .fs-provider-logo img{
	  width: 120px;
	  height: 120px;
	 
	  border-radius: 12px;
	  border:1px solid #e6e9ef;
  margin: 10px auto;
	  
	  
    }
	.fs-provider-name {
    font-size: 1.5rem;
    font-weight: 600;
		margin:10px auto;
}
	
    /* 3) Galería ocupa el ancho de la tarjeta, sin “truco de calc” */
    .fs-provider-gallery {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .fs-provider-gallery-track-wrapper {
        width: 100% !important;
    }

    /* 4) Thumbs pensados para móvil (no tamaño de escritorio) */
    .fs-provider-thumb {
        min-width: 130px !important;
        max-width: 130px !important;
        height: 130px !important;
    }

    /* Si quieres que cada foto ocupe todo el ancho del card, usa esto en lugar de lo anterior:
    .fs-provider-thumb {
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .fs-provider-thumb img {
        height: auto !important;
    }
    */
}

/* =========================================================
   FOR BUSINESSES PAGE (fb-*)
   ========================================================= */

/* HERO */
.fb-hero {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.fb-hero-media {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
}

.fb-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fb-hero-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.fb-hero-text {
    max-width: 720px;
}

.fb-hero-text h1 {
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.fb-hero-text p {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.fb-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background-color: #1A73E8;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.fb-btn-primary:hover {
    background-color: #1558b6;
    color: #ffffff;
}

/* SECCIONES GENERALES */
.fb-section {
    background-color: #F5F7FA;
}

.fb-section-alt {
    background-color: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.fb-section-header {
    max-width: 680px;
    margin-bottom: 2rem;
}

.fb-section-header h2 {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    color: #111827;
}

.fb-section-header p {
    font-size: 0.98rem;
    color: #4b5563;
}

/* BENEFICIOS GRID */
.fb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.fb-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.fb-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.fb-card p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* STEPS */
.fb-steps {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.fb-step {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 0.9rem 1rem;
}

.fb-step-number {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background-color: #1A73E8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    flex-shrink: 0;
}

.fb-step-body h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #111827;
}

.fb-step-body p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* WHO CAN JOIN – LISTA EN COLUMNAS */
.fb-list-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.fb-list-columns ul {
    list-style: disc;
    padding-left: 1.1rem;
}

/* CTA BOX */
.fb-cta-box {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    max-width: 640px;
}

.fb-cta-box p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1.1rem;
}

/* =========================
   RESPONSIVE (FOR BUSINESSES)
   ========================= */
@media (max-width: 900px) {

    .fb-hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .fb-hero-text h1 {
        font-size: 1.6rem;
    }

    .fb-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fb-list-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .fb-hero-text h1 {
        font-size: 1.4rem;
    }

    .fb-benefits-grid {
        grid-template-columns: 1fr;
    }

    .fb-section-header {
        margin-bottom: 1.5rem;
    }

    .fb-cta-box {
        padding: 1.4rem 1.2rem;
    }
}


