/* ========================================\n   BLESINK TATTOO & PIERCING\n   CÓDIGO COMPLETO - Solo Blanco y Negro\n   ======================================== */

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #999999;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    font-display: swap;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.logo span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--white);
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ========== HERO SECTION ========== */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 140px;
    font-weight: 700;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    animation: fadeInUp 1s ease;
    font-display: swap;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 0 0 10px 0;
    animation: fadeInUp 1.2s ease;
}

.hero-location {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--gray);
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== WHO WE ARE SECTION ========== */
.who-we-are {
    background: var(--white);
}

.row-split {
    display: flex;
    min-height: 600px;
}

.col-image,
.col-content {
    flex: 1;
}

.col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #595959;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    font-display: swap;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.services-section .section-title {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-gray);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-display: swap;
}

.service-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-section .section-label,
.portfolio-section .section-title {
    text-align: center;
}

.portfolio-section .section-title {
    margin-bottom: 50px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--black);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--black);
    color: var(--white);
}

.tab-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: var(--black);
    color: var(--white);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
}

.filter-tab.active .tab-count {
    background: var(--white);
    color: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--light-gray);
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.item-category {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 5px;
}

.item-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    font-display: swap;
}

.portfolio-item.hidden {
    display: none;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-quote {
    font-family: 'Times New Roman', Times, serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 30px;
    font-display: swap;
}

.testimonial-author {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.testimonial-btn:hover {
    background: var(--white);
    color: var(--black);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--white);
}

/* ==================== TEAM SECTION (CORREGIDO) ==================== */
/* ========== TEAM SECTION ========== */

/* Asegura ancho completo en contenedores internos */
@media (min-width: 481px) {
    .team-section .container {
        max-width: 100% !important;
    }
    .team-section > div {
        max-width: 100% !important;
    }
}

.team-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden; /* Evita scroll horizontal fantasma */
}

.team-section .section-label,
.team-section .section-title {
    text-align: center;
}

.team-section .section-title {
    margin-bottom: 80px;
}

.team-wrapper {
    position: relative;
    width: 100%;
    /* Protege contra colapso de altura */
    min-height: 450px; 
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.team-member {
    text-align: left;
    background: var(--white);
    position: relative;
}

.member-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
}

.member-photo {
    position: relative;
    overflow: hidden;
    height: 350px; /* Altura FIJA como en la galería */
    background-color: var(--light-gray);
    margin-bottom: 30px;
    width: 100%;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.overlay-text {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.overlay-icon {
    font-size: 40px;
    color: var(--white);
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-card:hover .photo-overlay {
    opacity: 1;
}

.member-info {
    position: relative;
    z-index: 5;
    background: var(--white); /* Asegura fondo blanco detras del texto */
    padding-top: 5px;
    min-height: 80px; /* Reserva espacio para el texto */
}

.member-name {
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.member-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.member-specialty {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Controles ocultos en desktop */
.team-carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.team-carousel-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.team-carousel-btn:hover {
    background: var(--black);
    color: var(--white);
}

.team-carousel-dots {
    display: flex;
    gap: 10px;
}

.team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: background 0.3s ease;
}

.team-dot.active {
    background: var(--black);
}

/* ========== CONTACT SECTION (Get a Tattoo) ========== */
.contact-section {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.contact-label {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-display: swap;
}

.btn-contact {
    display: inline-block;
    padding: 18px 55px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--gray);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========== CONTACT INFO SECTION ========== */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.info-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.phone-icon {
    font-size: 40px;
    color: var(--black);
}

.phone-number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-display: swap;
}

.phone-number:hover {
    color: var(--gray);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}

.detail-item i {
    font-size: 16px;
    color: var(--black);
}

.detail-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--black);
}

/* ========== GOOGLE MAPS SECTION ========== */
.map-section {
    width: 100%;
    background: var(--black);
}

.map-container {
    width: 100%;
    height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========== LOGO SECTION ========== */
.logo-section {
    padding: 80px 0;
    background: var(--black);
    text-align: center;
}

.logo-container {
    max-width: 200px;
    margin: 0 auto;
}

.logo-container img {
    width: 100%;
    height: auto;
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    color: var(--gray);
    text-align: center;
}

.footer p {
    font-size: 13px;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 90px;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 48px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .row-split {
        flex-direction: column;
    }

    .col-content {
        padding: 60px 40px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
    }

    .logo-img {
        height: 35px;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 36px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-quote {
        font-size: 32px;
    }

    .contact-title {
        font-size: 42px;
    }

    .phone-number {
        font-size: 36px;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }

    .info-content {
        flex-direction: column;
        gap: 15px;
    }

    .phone-icon {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-role {
        font-size: 9px;
    }

    .member-specialty {
        font-size: 12px;
    }

    .overlay-text {
        font-size: 12px;
    }

    .overlay-icon {
        font-size: 32px;
    }

    .map-container {
        height: 450px;
    }

    .logo-section {
        padding: 60px 0;
    }

    .logo-container {
        max-width: 150px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 11px;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .phone-number {
        font-size: 28px;
    }

    .contact-details {
        padding: 0 20px;
    }

    .detail-item {
        font-size: 13px;
        text-align: left;
    }

    /* CARRUSEL TEAM EN MOBILE */
    .team-wrapper {
        overflow: hidden;
    }

    .team-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        transition: transform 0.3s ease;
    }

    .team-member {
        min-width: 100%;
        flex-shrink: 0;
        padding: 0 20px;
    }

    .member-name {
        font-size: 24px;
    }

    .member-role {
        font-size: 11px;
    }

    .member-specialty {
        font-size: 13px;
    }

    .team-carousel-controls {
        display: flex;
    }

    .map-container {
        height: 400px;
    }

    .logo-section {
        padding: 40px 0;
    }

    .logo-container {
        max-width: 125px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================\n   BLESINK TATTOO & PIERCING - BASE\n   Reset y Variables\n   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #595959;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    font-display: swap;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #595959;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    font-display: swap;
}

/* --- Google Reviews Section Styles --- */
.google-reviews-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
    font-display: swap;
}

/* Header Badge */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    flex-wrap: wrap; /* Para móviles */
}

.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number { font-weight: bold; font-size: 1.2rem; }
.stars { color: #fbbc04; letter-spacing: 1px; }
.total-reviews { color: #666; font-size: 0.9rem; }

.btn-maps {
    margin-left: auto; /* Empuja el botón a la derecha */
    background: #f1f3f4;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-maps:hover { background: #e8eaed; }

/* Grid de Tarjetas */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Tarjeta Individual */
.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-top {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-meta .name { font-weight: bold; font-size: 0.95rem; color: #202124; }
.reviewer-meta .date { font-size: 0.8rem; color: #70757a; }

.mini-g-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    opacity: 0.7;
}

.card-stars {
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 10px;
}

.review-text {
    color: #4d4d4d;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

/* Móvil */
@media (max-width: 600px) {
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }\n    .btn-maps { margin-left: 0; margin-top: 10px; width: 100%; text-align: center;}
}

/* --- Google Reviews Large Header --- */

.reviews-header-large {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Separa izquierda y derecha */
    background: #fff;
    border: 1px solid #dfe1e5;
    border-radius: 12px; /* Bordes redondeados pero no \"chip\" */
    padding: 20px 30px; /* Tamaño grande */
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-wrap: wrap; /* Para móvil */
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-rating-block {
    display: flex;
    flex-direction: column;
}

.rating-big {
    font-weight: bold;
    font-size: 1.4rem; /* Grande */
    color: #202124;
    line-height: 1;
}

.stars-wrapper {
    display: flex;
    flex-direction: column;
}

.stars-gold {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.review-count-text {
    font-size: 0.85rem;
    color: #5f6368;
    margin-top: 2px;
}

/* Botón Premium Azul */
.btn-maps-premium {
    background-color: #fff;
    color: #1a73e8; /* Azul Google */
    border: 1px solid #dfe1e5;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-maps-premium:hover {
    background-color: #f8f9fa;
    color: #174ea6; /* Azul más oscuro al hover */
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}

/* Responsive para móvil */
@media (max-width: 600px) {
    .reviews-header-large {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .header-left {
        flex-direction: column;
        gap: 10px;
    }
    .header-right {
        width: 100%;
    }
    .btn-maps-premium {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ========================================\n   BLESINK - NAVIGATION\n   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 1);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-link {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-link.active,\n.nav-link:hover {
    color: var(--white);
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ========================================\n   BLESINK - HERO SECTION\n   ======================================== */

.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/assets/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 0 0 10px 0;
    animation: fadeInUp 1.2s ease;
}

.hero-location {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--white);
    animation: fadeInUp 1.4s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: var(--white);
    animation: scrollAnimation 2s infinite linear;
}

@keyframes scrollVisual {
    0% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================\n   BLESINK - WHO WE ARE SECTION\n   ======================================== */

.who-we-are {
    padding: 100px 0;
    background: var(--white);
}

.who-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.who-content-center .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.who-content-center .section-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.who-content-center .content-text {
    text-align: center;
}

.who-content-center .content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 0;
}

/* ========================================\n   BLESINK - SERVICES SECTION\n   ======================================== */

.services-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.services-section .section-title {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-gray);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================\n   BLESINK - PORTFOLIO SECTION\n   ======================================== */

.portfolio-section {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-section .section-label,\n.portfolio-section .section-title {
    text-align: center;
}

.portfolio-section .section-title {
    margin-bottom: 50px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--black);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab:hover,\n.filter-tab.active {
    background: var(--black);
    color: var(--white);
}

.tab-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: var(--black);
    color: var(--white);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
}

.filter-tab.active .tab-count {
    background: var(--white);
    color: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--light-gray);
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.item-category {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 5px;
}

.item-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.portfolio-item.hidden {
    display: none;
}

/* ========================================\n   BLESINK - TESTIMONIALS SECTION\n   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-family: 'Times New Roman', Times, serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.testimonial-btn:hover {
    background: var(--white);
    color: var(--black);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--white);
}

/* ========================================\n   BLESINK - TEAM SECTION \n   ======================================== */

/* Override container SOLO EN DESKTOP (no en mobile) */
@media (min-width: 481px) {
    .team-section .container {
        max-width: 100% !important;
    }

    .team-section > div {
        max-width: 100% !important;
    }
}

.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-section .section-label,
.team-section .section-title {
    text-align: center;
}

.team-section .section-title {
    margin-bottom: 80px;
}

.team-wrapper {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-member {
    text-align: left;
}

.member-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.member-photo {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-text {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.overlay-icon {
    font-size: 40px;
    color: var(--white);
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-card:hover .photo-overlay {
    opacity: 1;
}

.member-info {
    pointer-events: none;
}

.member-name {
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.member-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.member-specialty {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.team-carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.team-carousel-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.team-carousel-btn:hover {
    background: var(--black);
    color: var(--white);
}

.team-carousel-dots {
    display: flex;
    gap: 10px;
}

.team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: background 0.3s ease;
}

.team-dot.active {
    background: var(--black);
}

/* ========================================\n   BLESINK - CONTACT SECTIONS\n   ======================================== */

/* Contact Section - Get a Tattoo (fondo negro) */
.contact-section {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.contact-label {
    font-size: 13px;
    letter-spacing: 3px;
    color: #cccccc;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.btn-contact {
    display: inline-block;
    padding: 18px 55px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--gray);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Info Section (fondo blanco) */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.info-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: #595959;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.phone-icon {
    font-size: 40px;
    color: var(--black);
}

.phone-number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--gray);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}

.detail-item i {
    font-size: 16px;
    color: var(--black);
}

.detail-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--black);
}

/* Google Maps Section */
.map-section {
    width: 100%;
    background: var(--black);
}

.map-container {
    width: 100%;
    height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================\n   BLESINK - FOOTER & EXTRAS\n   ======================================== */

/* Logo Section */
.logo-section {
    padding: 80px 0;
    background: var(--black);
    text-align: center;
}

.logo-container {
    max-width: 200px;
    margin: 0 auto;
}

.logo-container img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: var(--light-gray);
    color: var(--gray);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-instagram {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-instagram:hover {
    color: var(--gray);
}

.footer-instagram i {
    font-size: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.footer-detail i {
    font-size: 14px;
    color: var(--gray);
}

.footer-detail a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-detail a:hover {
    color: var(--black);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.blesink-link {
    color: #00A8E8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blesink-link:hover {
    color: #0088c7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-detail {
        font-size: 12px;
    }

    .logo-section {
        padding: 60px 0;
    }

    .logo-container {
        max-width: 150px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .logo-section {
        padding: 40px 0;
    }

    .logo-container {
        max-width: 125px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================\n   BLESINK - LIGHTBOX GALLERY\n   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
}

.lightbox-category {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #e0e0e0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lightbox-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* Botones de control */
.lightbox-close,\n.lightbox-prev,\n.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,\n.lightbox-prev:hover,\n.lightbox-next:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
    font-size: 20px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Contador */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-close,\n    .lightbox-prev,\n    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-title {
        font-size: 18px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .lightbox-content img {
        max-height: 60vh;
    }

    .lightbox-close,\n    .lightbox-prev,\n    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .lightbox-caption {
        margin-top: 15px;
    }

    .lightbox-title {
        font-size: 16px;
    }
}
