/* 🔥 FIX DEFINITIVO OVERFLOW */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1a1a;
    --primary-charcoal: #2d2d2d;
    --accent-gold: #c9a961;
    --accent-bronze: #8b7355;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --background-light: #fafafa;
    --background-cream: #f5f3f0;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-color: var(--primary-dark);
}

.btn-primary::before {
    background-color: var(--accent-gold);
}

.btn-primary:hover {
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary::before {
    background-color: var(--text-light);
}

.btn-secondary:hover {
    color: var(--text-dark);
}

.btn-light {
    background-color: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
}

.btn-light::before {
    background-color: var(--accent-gold);
}

.btn-light:hover {
    border-color: var(--accent-gold);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0px;
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;    
    color: var(--text-light);          
}   

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    color: #c9a961;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-top: 4px;
    color: #c9a961;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.nav-cta:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;

    display: flex;
    flex-direction: column;   /* 👈 ESTA ES LA CLAVE */
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 25%,
        #2d2524 50%,
        #1a1a1a 75%,
        #0f0f0f 100%
    );
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(201, 169, 97, 0.03) 0px, transparent 1px, transparent 40px, rgba(201, 169, 97, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(201, 169, 97, 0.03) 0px, transparent 1px, transparent 40px, rgba(201, 169, 97, 0.03) 41px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

/* ===== CONTACT BAR ===== */
.contact-bar {
    background-color: var(--background-cream);
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.contact-item svg {
    color: var(--accent-gold);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* ===== SECTION STYLES ===== */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--text-light);
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background-color: var(--text-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 0;
    background-color: var(--background-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--text-light);
    padding: 48px 32px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.service-icon {
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(201, 169, 97, 0.02) 0px, transparent 1px, transparent 60px, rgba(201, 169, 97, 0.02) 61px);
}

.quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    background-color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 80px;
}

.feature {
    position: relative;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 300;
    color: #d0c8bf;
    line-height: 1;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-text {
    font-size: 20px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo .logo-subtext {
    font-size: 9px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 350px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

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

.footer-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-list a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== CONTACT PAGE ===== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-charcoal) 100%);
    text-align: center;
}

.page-hero .section-title {
    color: var(--text-light);
}

.contact-content {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.contact-info-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-info-text a:hover {
    color: var(--accent-gold);
}

.contact-form-container {
    background-color: var(--background-cream);
    padding: 48px;
    border-radius: 4px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--text-light);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-button:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-smooth);
        padding: 48px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .contact-items {
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

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

.gallery-section {
  padding: 40px 0;
}

/* primera galería — mantiene aire arriba */
.gallery-section:first-of-type {
  padding-top: 80px;
}

/* última galería — mantiene aire antes del footer */
.gallery-section:last-of-type {
  padding-bottom: 80px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.gallery-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: #000;
  color: #fff;
}

.gallery-wrapper {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;

  align-items: flex-start; /* 🔥 ESTO ES LA CLAVE */
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== Overlay hover effect ===== */

.gallery-item {
  position: relative;
  flex-shrink: 0;
}

.gallery-item img {
  display: block;
}

/* capa negra */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* texto */
.overlay p {
  font-size: 18px;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: transform 0.35s ease;
}

/* hover */
.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover .overlay p {
  transform: translateY(0);
}

/* Permite clicks a través del overlay */
.overlay {
  pointer-events: none;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-btn svg {  
  width: 25px;
  height: 25px;
}

.gallery-btn path {
  fill: none;
  stroke: #111;
  stroke-width: 0.80;
  stroke-linejoin: round;
  stroke-linecap: round;
}

    .gallery-btn:hover {
  background: #111;   /* fondo oscuro */
}

.gallery-btn:hover path {
  stroke: #fff;       /* icono blanco */
}

.partners-logos img {
    height: 50px;      /* todos tendrán la misma altura */
    width: auto;       /* mantiene proporción */
    object-fit: contain;
}

.partners-logos {
    display: flex;
    flex-direction: column;   /* 📱 móvil: uno debajo del otro */
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .partners-logos {
        flex-direction: row;   /* 💻 tablet y desktop */
        gap: 100px;
    }
}

.partners-section {
    padding: 70px 0;
}

@media (max-width: 768px) {

  .gallery-track {
    scroll-snap-type: x mandatory;
  }

  .gallery-track img {
    width: 100%;       /* 👉 sobrescribe los 320px */
    max-width: 100%;
  }

  .gallery-item {
    flex: 0 0 100%;    /* cada slide ocupa el ancho completo */
    scroll-snap-align: center;
  }
}
@media (min-width: 1024px) {
    .hero {
        padding-top: 200px;
    }
}
.partners-section {
    background-color: var(--primary-dark);
}
.partners-section {
    background-color: var(--primary-dark);
    margin-bottom: -1px;
}
/* ============================= */
/* TESTIMONIALS SECTION */
/* ============================= */

.testimonials {
    background: #f9f9f9; /* mismo fondo que Services */
    padding: 120px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===== LEFT SIDE ===== */

.testimonial-highlight .highlight-card {
    margin-top: 30px;
    padding: 40px;
    border-radius: 12px;
    background: #ffffff; /* contraste con fondo gris */
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.stars {
    color: #c6a75e;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}

.client-info strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-info span {
    display: block;
    font-size: 14px;
    color: #777;
}

/* ===== RIGHT SIDE SLIDER ===== */

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: slideTestimonials 20s infinite linear;
}

.testimonial-card {
    min-width: 320px;
    padding: 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

/* efecto suavizado lateral */
.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9, transparent);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9, transparent);
}

/* animación continua */
@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@media (max-width: 1200px) {
    .testimonials-container {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .slider-track {
        animation: slideTestimonials 25s infinite linear;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: 260px;
    }

    .testimonial-highlight .highlight-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}



























