/* ======================================================
   HOME – SIMPLIFICAR INMOBILIARIA
   Diseño premium / inmobiliaria moderna
====================================================== */

/* =====================
   BASE
===================== */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #111;
}

/* =====================
   HERO CAROUSEL
===================== */
.hero-carousel {
    position: relative;
    height: calc(100vh - 100px);
    
    overflow: hidden;
    isolation: isolate;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* =====================
   SLIDES
===================== */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay oscuro elegante */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.15) 100%
    );
    z-index: 1;
}
/* =====================
   HERO CAROUSEL – LIMPIO
===================== */

.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* Overlay suave (SIN cuadro) */
.slide::before {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.2)
    );
}



/* =====================
   CONTENIDO HERO
===================== */

.hero-animated {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding-left: clamp(32px, 8vw, 120px);
    padding-top: clamp(40px, 10vh, 90px);
    color: #ffffff;
}

/* Tag */
.hero_tag {
    display: inline-block;
    background: rgba(212,175,55,0.25);
    color: #d4af37;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* Título */
.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.05rem;
    max-width: 460px;
    color: #eeeeee;
    margin-bottom: 34px;
}

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

.hero_actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn_hero {
    padding: 13px 34px;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all .3s ease;
}

.btn_hero:hover {
    background: #b8962e;
    transform: translateY(-2px);
}

.btn_hero_outline {
    padding: 13px 34px;
    border: 2px solid #d4af37;
    color: #d4af37;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.btn_hero_outline:hover {
    background: #d4af37;
    color: #000;
}

/* =====================
   ANIMACIÓN HERO
===================== */

.hero-animated > * {
    opacity: 0;
    transform: translateX(-40px);
    animation: heroFadeIn .9s ease forwards;
}

.hero-animated > *:nth-child(1) { animation-delay: .2s; }
.hero-animated > *:nth-child(2) { animation-delay: .35s; }
.hero-animated > *:nth-child(3) { animation-delay: .5s; }
.hero-animated > *:nth-child(4) { animation-delay: .65s; }

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================
   CONTROLES
===================== */

.carousel-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 26px;
    z-index: 3;
}

.carousel-controls span {
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity .3s ease, transform .3s ease;
}

.carousel-controls span:hover {
    opacity: 1;
    transform: scale(1.1);
}


/* =====================
   CONTROLES SLIDER (OK)
===================== */
.carousel-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 26px;
    z-index: 3;
}

.carousel-controls span {
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity .3s ease, transform .3s ease;
}

.carousel-controls span:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* =====================
   CATEGORÍAS
===================== */

.categorias {
    padding: 100px 6%;
    background: #ffffff;
}

.categorias h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.categorias h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Card base */
.categoria_item {
    position: relative;
    display: block;
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

/* Imagen */
.categoria_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

/* Overlay */
.categoria_overlay {
    position: absolute;
    inset: 0;
    padding: 30px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.25)
    );
    color: #ffffff;
    transition: background .4s ease;
}

/* Título */
.categoria_title {
    font-size: 1.4rem;
    font-weight: 500;
    transition: transform .35s ease;
}

/* Descripción (VISIBLE por defecto para mobile/tablet) */
.categoria_desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: all .35s ease;
}

/* Hover imagen */
.categoria_item:hover img {
    transform: scale(1.07);
}

/* =====================
   HOVER PREMIUM SOLO DESKTOP
===================== */
@media (min-width: 992px) {

    .categoria_title {
        transform: translateY(70px);
    }

    .categoria_desc {
        opacity: 0;
        transform: translateY(10px);
    }

    .categoria_item:hover .categoria_overlay {
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.45)
        );
    }

    .categoria_item:hover .categoria_title {
        transform: translateY(0);
    }

    .categoria_item:hover .categoria_desc {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   MOBILE / TABLET AJUSTES
===================== */
@media (max-width: 768px) {

    .categoria_item {
        height: 280px;
    }

    .categoria_overlay {
        padding: 22px;
    }

    .categoria_title {
        font-size: 1.2rem;
    }
}/* =====================
   PROPIEDADES DESTACADAS – WARM PREMIUM
===================== */

.home-featured {
    background: #f6f5f2; /* blanco cálido */
    padding: 90px 0;
}

/* Header */
.featured-header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.featured-header p {
    font-size: 1.05rem;
    color: #6f6f6f;
}

/* Card */
.property-card {
    height: 100%;
    background: #f6f5f2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0,0,0,.16);
}

/* Image */
.property-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Info */
.property-info {
    padding: 22px 22px 26px;
    background: transparent;
}

.property-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.property-location {
    font-size: .9rem;
    color: #7a7a7a;
    margin-bottom: 18px;
}

/* Footer */
.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Precio */
.property-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: #c9a635; /* dorado más sobrio */
}

/* CTA */
.property-cta {
    font-size: .9rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    transition: color .25s ease;
}

.property-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #c9a635;
    transition: width .25s ease;
}

.property-cta:hover {
    color: #c9a635;
}

.property-cta:hover::after {
    width: 100%;
}


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

/* Tablet */
@media (max-width: 992px) {
    .property-image img {
        height: 210px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .property-image img {
        height: 190px;
    }
}


/* =====================
   CIERRE HOME – TESTIMONIO + CTA FINAL
   Versión limpia, premium y coherente
===================== */



.home-reviews {
    background: #f6f5f2;
    padding: 110px 0;
}

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

.reviews-header h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.reviews-header p {
    color: #6f6f6f;
    font-size: 1.05rem;
}

/* Track */
.reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

/* Card */
.review-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 26px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Stars */
.review-stars {
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-badge {
    margin-left: auto;
    font-weight: 700;
    color: #4285f4;
}

/* Text */
.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 22px;
}

/* User */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img,
.user-letter {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #d4af37;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-user strong {
    display: block;
    font-size: .9rem;
    color: #111;
}

.review-user span {
    font-size: .8rem;
    color: #777;
}

.home-trust-cta {
    background:
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.06), transparent 60%),
        linear-gradient(180deg, #f6f5f2 0%, #efede9 100%);
}


/* Contenedor principal (NO tarjeta) */
.trust-cta-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 90px; /* un poco más aire */
    align-items: center;
}

/* =====================
   TESTIMONIO (ÚNICA TARJETA)
===================== */

.testimonial-card {
    background: linear-gradient(180deg, #111111, #1a1a1a);
    border-radius: 26px;
    padding: 64px 60px;
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
    border: 1px solid rgba(212,175,55,.25);
    position: relative;
}

/* Comilla decorativa */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 26px;
    font-size: 3.6rem;
    color: rgba(212,175,55,.35);
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.45rem;
    line-height: 1.7;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 720px;
}

/* Autor */
.testimonial-author {
    margin-bottom: 26px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.author-meta {
    font-size: .95rem;
    color: #cfcfcf;
}

/* Personas */
.testimonial-people {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial-people img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.people-note {
    margin-left: 12px;
    font-size: .9rem;
    color: #cfcfcf;
}
@media (min-width: 992px) {
    .cta-content {
        padding-left: 40px;
    }
}
    
/* =====================
   CTA FINAL
===================== */

.trust-cta {
    text-align: left;
}

.trust-cta h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
}

.trust-cta p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 34px;
    max-width: 420px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #d4af37;
    color: #111;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.cta-content {
    max-width: 480px;
}
@media (min-width: 992px) {
    .cta-content {
        margin-left: auto;   /* LO MUEVE A LA DERECHA */
    }
}
/* =====================
   CENTRADO CTA EN MOBILE / TABLET
===================== */

@media (max-width: 992px) {

    .cta-content {
        max-width: 520px;
        margin: 0 auto;          /* CENTRA EL BLOQUE */
        text-align: center;      /* CENTRA TEXTO */
    }

    .cta-btn {
        margin: 0 auto;          /* CENTRA BOTÓN */
        display: inline-block;
    }
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

/* =====================
   RESPONSIVE (BOOTSTRAP FRIENDLY)
===================== */

/* Tablet y abajo */
@media (max-width: 992px) {

    .testimonial-card {
        padding: 50px 36px;
        text-align: center;
    }

    .testimonial-card::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-people {
        justify-content: center;
    }

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

    .trust-cta p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .testimonial-card {
        padding: 40px 26px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .trust-cta h2 {
        font-size: 2rem;
    }
}

/* =====================
   POR QUÉ ELEGIRNOS – WARM PREMIUM
===================== */

.home-why {
    background: linear-gradient(
        180deg,
        #f6f5f2 0%,
        #efede9 100%
    );
    padding: 110px 6%;
    text-align: center;
}

.home-why h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.home-why h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #c9a635; /* dorado sobrio */
    margin: 16px auto 0;
    border-radius: 2px;
}

.why-list {
    max-width: 760px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.why-list li {
    font-size: 1.05rem;
    padding: 20px 0;
    color: #4a4a4a;
    position: relative;
    line-height: 1.6;
}

.why-list li::before {
    content: "—";
    color: #c9a635;
    margin-right: 10px;
}

.why-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,.06);
}



/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {

    .featured-list {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .featured-list::-webkit-scrollbar {
        display: none;
    }

    .property-card {
        min-width: 260px;
        scroll-snap-align: start;
    }
}
/* =========================================================
   HOME – ZONAS / REGIONES (PREMIUM FINAL)
   Compatible con Bootstrap + Laravel Blade
========================================================= */

.home-zones {
    position: relative;
    width: 100%;
    overflow: visible;

    background: #f6f5f2;

     padding: 140px 0 220px;
    z-index: 2;
}


/* =====================
   WRAPPER PRINCIPAL
===================== */
.zones-wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px; /* separación REAL entre bloques */
    position: relative;
}

/* =====================
   BLOQUE IZQUIERDO – CARDS
===================== */
.zones-cards {
    display: flex;
    gap: 32px;
    padding-left: 8%;
    position: relative;
    z-index: 1;
}

/* Card clickeable */
.zone-card {
    position: relative;
    width: 220px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 22px 55px rgba(0,0,0,.28);
    transition: transform .45s ease, box-shadow .45s ease;
}

/* FIX Bootstrap links */
.zone-card,
.zone-card * {
    color: #fff !important;
}

/* Imagen */
.zone-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .6s ease;
}

/* Hover */
.zone-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(0,0,0,.35);
}

/* =====================
   OVERLAY
===================== */
.zone-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Título ciudad */
.zone-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Badge propiedades */
.zone-badge {
    align-self: flex-start;
    background: rgba(212,175,55,.95);
    color: #111 !important;
    font-size: .75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* =====================
   BLOQUE DERECHO – CONTENIDO
===================== */
.zones-content {
    background: linear-gradient(
        180deg,
        #111111,
        #1a1a1a
    );
    color: #f6f5f2;

    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 2;

    margin-left: -80px;

    border-radius: 36px;
    border: 1px solid rgba(212,175,55,.22);

    box-shadow:
        0 24px 60px rgba(0,0,0,.35),
        0 8px 20px rgba(0,0,0,.25);
}


/* Título */
.zones-content h2 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 26px;
}

/* Texto */
.zones-content p {
    font-size: 1.05rem;
    color: #d1d1d1;
    line-height: 1.65;
    max-width: 360px;
    margin-bottom: 40px;
}

/* =====================
   ACCIONES
===================== */
.zones-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Botón principal */
.zones-btn {
    background: #d4af37;
    color: #111 !important;
    padding: 15px 38px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.zones-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* Botón play */
.zones-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,.8);
    position: relative;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.zones-play:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,.08);
}

.zones-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.home-zones::before,
.home-zones::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

/* Fade superior */
.home-zones::before {
    top: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.06),
        rgba(0,0,0,0)
    );
}

/* Fade inferior */
.home-zones::after {
    bottom: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.06),
        rgba(0,0,0,0)
    );
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {

    .zones-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zones-cards {
        justify-content: center;
        padding-left: 0;
    }

    .zones-content {
        margin-left: 0;
        padding: 60px 30px;
        border-radius: 24px;
        text-align: center;
    }

    .zones-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .zones-actions {
        justify-content: center;
    }
}


/* =====================
   MODAL VIDEO – COMPLETO Y RESPONSIVE
===================== */

.zones-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.zones-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fondo oscuro */
.zones-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(6px);
}

/* Contenedor del video */
.zones-video-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    animation: videoZoom .3s ease;
}

@keyframes videoZoom {
    from {
        transform: scale(.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Frame responsive 16:9 */
.zones-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.zones-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Botón cerrar */
.zones-video-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4af37;
    color: #111;
    font-size: 26px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.review-stars i {
    color: #f4b400; /* dorado */
    font-size: 1rem;
    margin-right: 2px;
}

.google-badge i {
    color: #4285f4;
    margin-left: 6px;
    font-size: 0.9rem;
}

.user-letter {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #374151;
}