/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --primary-gold: #D4AF37;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --text-gray: #495057;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --header-height: 96px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-white);
    overflow-x: hidden;
    background-color: var(--primary-black);
    min-height: 100dvh;
}

/* Sistema de Tipografía - Major Third (1.25) */
/* Tamaño base: 16px */

p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: normal;
}

h6 {
    font-size: 20px; /* 16 * 1.25 */
    line-height: 120%;
    letter-spacing: -0.5%;
}

h5 {
    font-size: 25px; /* 20 * 1.25 */
    line-height: 110%;
    letter-spacing: -0.75%;
}

h4 {
    font-size: 31px; /* 25 * 1.25 = 31.25px */
    line-height: 105%;
    letter-spacing: -1%;
}

h3 {
    font-size: 31px; /* reducido de 39px */
    line-height: 100%;
    letter-spacing: -1.5%;
}

h2 {
    font-size: 49px; /* 39 * 1.25 = 48.75px */
    line-height: 100%;
    letter-spacing: -1.75%;
}

h1 {
    font-size: 61px; /* 49 * 1.25 = 61.25px */
    line-height: 100%;
    letter-spacing: -2%;
}
  
  /* Fix para iOS Safari */
  @supports (-webkit-touch-callout: none) {
    html, body {
      height: -webkit-fill-available;
    }
  }  

/* Fondo global con imagen: capa fija compatible iOS */
.site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #050505 0%, #080808 40%, #0b0b0b 100%);
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}

/* iOS: aseguramos viewport estable */
@supports (-webkit-touch-callout: none) {
    .site-bg {
        position: fixed;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-black);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-image: none;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav {
    width: 100%;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
    max-width: 100%;
    width: 100%;
    gap: 2rem;
}

.nav-container > .logo-link {
    justify-self: start;
    margin-left: clamp(0.5rem, 2vw, 1.25rem);
}

.nav-container > .call-button {
    display: none;
}

.nav-container > .nav-menu {
    justify-self: center;
    margin: 0;
}

.nav-container > .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
    margin-right: clamp(0.5rem, 2vw, 1.25rem);
}

.nav-container > .hamburger {
    display: none;
}

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

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 1px;
}

.logo-link {
    text-decoration: none;
    display: inline-flex;
}

.logo-link:link,
.logo-link:visited,
.logo-link:hover,
.logo-link:active,
.logo-link:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

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

.cta-button {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.cta-button:hover {
    background-color: var(--primary-black);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100svh;
    padding: calc(var(--header-height) + 3rem) clamp(1.75rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/hero.webp');
    background-size: cover;
    background-position: center 22%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Fix para iOS - deshabilitar background-attachment: fixed en hero */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--primary-white);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}

.hero-subtitle-1 {
    font-size: clamp(1rem, 3.3vw, 1.35rem);
    color: var(--primary-white);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.012em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-2 {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

/* Trustindex badge en hero */
.trustindex-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

.trustindex-badge iframe,
.trustindex-badge div[data-trustindex] {
    max-width: 100% !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    border-radius: 10px !important;
}

.hero-trust-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Secciones generales */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 49px; /* h2 */
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    line-height: 100%;
    letter-spacing: -1.75%;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Specialties Section */
.specialties-section {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.specialties-section .section-title {
    color: var(--primary-black);
}

.specialties-section .section-title.animate-in {
    color: var(--primary-black);
}

.specialties-section .section-header p {
    color: var(--text-gray);
}

.specialties {
    margin-top: 0;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    color: var(--primary-gold);
    font-size: 1.15rem;
    font-weight: 500;
    min-height: 80px;
}

.specialty-item span {
    flex: 1;
    line-height: 1.4;
}

.specialty-item:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.specialty-item i {
    color: var(--primary-gold);
    font-size: 1.8rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.specialty-item:hover i {
    color: var(--primary-black);
}

/* About Section */
.about {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    color: var(--primary-black);
}

.about .section-title {
    color: var(--primary-black);
}

.about .section-title.animate-in {
    color: var(--primary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.team-figure {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: clamp(340px, 45vw, 520px);
    object-fit: cover;
    object-position: center 18%;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: transform 0.6s ease;
}

.license-badge {
    position: absolute;
    top: clamp(8px, 2vw, 18px);
    left: clamp(8px, 2vw, 18px);
    padding: 0;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.license-badge-img {
    width: clamp(68px, 11vw, 120px);
    display: block;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

/* Estilos para el bloque expandible Civil */
.specialty-expandable {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding-right: 3.5rem;
}

.specialty-expandable:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.expand-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
    pointer-events: none;
}

.expand-icon.rotated {
    transform: translateY(-50%) rotate(180deg);
}

.specialty-subitems {
    display: none;
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: slideDown 0.6s ease-out;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-subitems.active {
    display: block;
}

.specialty-subitem {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1.05rem;
}

.specialty-subitem:last-child {
    margin-bottom: 0;
}

.specialty-subitem:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateX(5px);
}

.specialty-subitem i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.specialty-subitem:hover i {
    color: var(--primary-black);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.team-img {
    width: 100%;
    height: clamp(340px, 45vw, 520px);
    object-fit: cover;
    object-position: center 18%;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: transform 0.6s ease;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
    padding: 5rem 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-black);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    min-width: 250px;
    justify-content: center;
}

.cta-whatsapp,
.cta-personal {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

.cta-whatsapp:hover,
.cta-personal:hover {
    background-color: var(--primary-black);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-btn i {
    font-size: 1.2rem;
}

.trustindex-widget-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

.trustindex-widget-container iframe,
.trustindex-widget-container div[data-trustindex] {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    border: none !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #ffffff 0%, #f2f3f5 100%);
    padding: 5rem 0;
    color: var(--primary-black);
}

.contact .section-title {
    color: var(--primary-black);
}

.contact .section-title.animate-in {
    color: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-section {
    order: 1;
}

.contact-info {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    color: var(--primary-black);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-number:hover {
    color: var(--primary-gold);
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.contact-email {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.contact-email a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary-black);
}

.btn-agendar {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 10px 18px;
    background-color: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.btn-agendar:hover {
    background-color: var(--primary-black);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(248, 249, 250, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-email {
    flex: 1 1 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: var(--primary-white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-email {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-black);
}

.btn-email:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    padding: 3.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

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

.footer-menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-menu a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 0.85rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Quitar subrayado sin romper el círculo */
.footer .social-link,
.footer .social-link:link,
.footer .social-link:visited,
.footer .social-link:hover,
.footer .social-link:focus,
.footer .social-link:active {
    text-decoration: none !important;
    border: 2px solid var(--primary-gold) !important; /* mantiene el círculo completo */
    border-radius: 50% !important;
    box-shadow: none !important;
}

.footer .social-link::after {
    content: none !important;
}

.social-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-hours h4,
.footer-contact h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.footer-hours p,
.footer-contact p,
.footer-bottom p,
.disclaimer {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.5;
}

.disclaimer {
    font-style: italic;
    font-size: 0.9rem;
}

/* Blog layouts */
.blog-hero {
    background-color: var(--primary-black);
    padding: 8rem 0 4.5rem;
    text-align: center;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.blog-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-content {
    background-color: var(--primary-black);
    padding: 4rem 0;
}

.blog-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.blog-article {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    border-color: var(--primary-gold);
}

/* Para blog.html - imagen del artículo en la lista */
.blog-article .article-image {
    height: 240px;
    overflow: hidden;
}

.blog-article .article-img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-article:hover .article-img {
    transform: scale(1.05);
}

/* Para blog.html - contenido del artículo en la lista */
.blog-article .article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
        gap: 1rem;
    }

.blog-article .article-title {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-white);
}

.blog-article .article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.blog-article .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--primary-gold);
        font-size: 0.95rem;
}

.article-date,
.article-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

/* ======= Article Page ======= */
.article-section {
    background-color: var(--primary-black);
    padding: 6.5rem 0 4rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2.25rem;
}

.article-breadcrumb {
    margin: 0 0 2rem;
    display: flex;
    justify-content: center;
}

.breadcrumb-link {
    color: var(--primary-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    padding: 0.85rem 1.75rem;
    border: 2px solid rgba(212, 175, 55, 0.9);
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.08);
}

.breadcrumb-link:hover {
    color: var(--primary-black);
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
}

.breadcrumb-link i {
    font-size: 1.1rem;
}

.article-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
        gap: 1.5rem;
    color: var(--primary-gold);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.article-body {
    max-width: 950px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.article-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.article-content {
    padding: 0 0.5rem;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-gold);
    margin: 2rem 0 0.75rem;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-white);
    margin: 1.25rem 0 0.5rem;
}

.article-content p,
.article-list {
    color: var(--light-gray);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.article-list {
    padding-left: 1.25rem;
}

/* CTA dentro del artículo */
.article-cta {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.article-cta h3 {
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.article-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-buttons .btn {
    flex: 0 0 clamp(200px, 18vw, 260px);
    max-width: clamp(200px, 18vw, 260px);
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global helpers */
section {
    scroll-margin-top: calc(var(--header-height, 96px) + 24px);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

@supports (-webkit-touch-callout: none) {
    html {
        height: -webkit-fill-available;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive System */
@media (min-width: 1281px) {
    .hero {
        background-position: center 18%;
    }

    .hero-content {
        max-width: 820px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1040px;
    }

    .hero-content {
        max-width: 760px;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 84px;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding: 0.65rem clamp(0.75rem, 4vw, 1.5rem);
        gap: 0.5rem;
        width: 100%;
    }

    .nav-container > .logo-link {
        order: 2;
        flex: 1 1 auto;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-container > .logo-link .logo {
        gap: 0.5rem;
    }

    .nav-container > .logo-link .logo-img {
        height: 52px;
    }

    .nav-container > .logo-link .logo-text {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .nav-container > .call-button {
        display: inline-flex;
        order: 1;
        flex: 0 0 auto;
        margin-left: 0;
    }

    .nav-container > .nav-menu {
        display: none;
    }

    .nav-container > .nav-actions {
        display: none;
    }

    .nav-container > .hamburger {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        margin-right: 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        margin: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.96);
        padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 5vw, 2.25rem);
        border-radius: 0;
        box-shadow: none;
        gap: 1.5rem;
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
        z-index: 999;
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.3rem;
    }

    .hero {
        padding: calc(var(--header-height) + 2.5rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 4rem);
        align-items: flex-start;
        min-height: 100svh;
    }

    .hero-content {
        text-align: center;
        padding: 0;
        width: 100%;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-section {
        order: 1;
    }

    .contact-info {
        order: 2;
        padding: 1.5rem 1rem;
        gap: 2rem;
    }

    .contact-number {
        font-size: 1.8rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        align-items: center;
        padding: calc(var(--header-height) + 2.75rem) clamp(2rem, 5vw, 3.5rem) clamp(3.5rem, 6vw, 4.75rem);
        background-position: center 26%;
        background-size: cover;
    }

    .hero-content {
        max-width: 640px;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
    }

    .btn {
        min-width: 220px;
        width: auto;
        max-width: none;
        font-size: 0.98rem;
    }

    .trustindex-badge {
        transform: scale(0.9);
    }

    .specialty-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }

    .specialty-item,
    .specialty-subitem {
        padding: 1.4rem 1.2rem;
        font-size: 1rem;
    }

    .specialty-expandable {
        padding-right: 3rem;
    }

    .about-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form-title {
        font-size: 1.6rem;
    }

    .contact-number {
        font-size: 2rem;
    }

    .contact-item i {
        font-size: 2.2rem;
    }

    .form-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .form-buttons .btn {
        max-width: none;
        width: auto;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .team-img {
        height: clamp(360px, 48vw, 520px);
        object-position: center 22%;
    }

    .license-badge {
        top: 14px;
        left: 14px;
    }

    .license-badge-img {
        width: clamp(74px, 12vw, 110px);
    }

    .cta-buttons {
        gap: 1.5rem;
    }

    .cta-buttons .cta-btn {
        min-width: 260px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
        gap: 2.25rem;
    }

    .footer-menu ul {
        justify-content: flex-start;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }

    .hero-subtitle-1 {
        font-size: clamp(1rem, 3.8vw, 1.35rem);
    }

    .hero-subtitle-2 {
        font-size: clamp(0.95rem, 3.4vw, 1.2rem);
    }

    .specialty-item,
    .specialty-subitem {
        font-size: 0.95rem;
        padding: 1.25rem 1.1rem;
    }

    .specialty-expandable {
        padding-right: 2.8rem;
    }

    .trustindex-badge {
        transform: scale(0.92);
        transform-origin: top center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: calc(var(--header-height) + 2rem) 1.5rem 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        max-width: 420px;
        font-size: 0.95rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
    }

    .form-buttons .btn {
        flex: 0 0 auto;
        width: 100%;
        max-width: 480px;
        align-self: center;
        min-width: 0;
        padding: 12px 20px;
        font-size: 0.93rem;
        border-radius: 10px;
    }

    .btn-whatsapp i,
    .btn-email i {
        margin-right: 0.35rem;
    }

    .footer-menu ul {
        justify-content: center;
    }
}

@media (min-width: 601px) and (max-width: 820px) {
    .hero {
        padding: calc(var(--header-height) + 2.25rem) clamp(1.75rem, 4.5vw, 3rem) clamp(3rem, 5vw, 3.9rem);
        align-items: center;
        background-position: center 30%;
    }

    .hero-content {
        max-width: 620px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        max-width: 340px;
    }

    .specialty-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-number {
        font-size: 1.7rem;
    }

    .contact-item i {
        font-size: 1.9rem;
    }

    .team-img {
        height: clamp(340px, 52vw, 500px);
        object-position: center 24%;
    }

    .license-badge {
        top: 12px;
        left: 12px;
    }

    .license-badge-img {
        width: clamp(70px, 14vw, 100px);
    }

    .contact-form {
        padding: 1.85rem;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 78px;
    }

    .nav-container {
        padding: 0.6rem clamp(0.65rem, 4vw, 1.25rem);
    }

    .nav-container > .logo-link .logo-img {
        height: 46px;
    }

    .nav-container > .logo-link .logo-text {
        font-size: 1.05rem;
    }

    .nav-container > .call-button {
        display: inline-flex;
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        margin-left: 0;
    }

    .nav-container > .hamburger {
        margin-right: 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 52px;
    }

    .hero-title span {
        display: block;
    }

    .hero {
        padding: calc(var(--header-height) + 1.5rem) 1.25rem 2rem;
        background-position: center 34%;
    }

    .team-img {
        height: clamp(300px, 80vw, 420px);
        object-position: center 26%;
        border-radius: 14px;
    }

    .license-badge {
        top: 10px;
        left: 10px;
    }

    .license-badge-img {
        width: clamp(60px, 18vw, 92px);
    }

    .hero-subtitle-1,
    .hero-subtitle-2 {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .trustindex-badge {
        transform: scale(0.85);
    }

    .specialty-item {
        gap: 0.75rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .contact-number {
        font-size: 1.6rem;
    }

    .contact-item i {
        font-size: 1.8rem;
    }

    .footer-menu ul {
        gap: 1rem;
    }

    .footer-info {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 74px;
    }

    .nav-container {
        padding: 0.55rem clamp(0.55rem, 4vw, 1rem);
    }

    .nav-container > .logo-link .logo-img {
        height: 40px;
    }

    .nav-container > .logo-link .logo-text {
        font-size: 0.95rem;
    }

    .nav-container > .call-button {
        display: inline-flex;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-left: 0;
    }

    .nav-container > .hamburger {
        margin-right: 0;
    }

    .hero {
        padding: calc(var(--header-height) + 1.15rem) 1rem 1.6rem;
        background-position: center 36%;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        letter-spacing: -1px;
    }

    .hero-subtitle-1 {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }

    .hero-subtitle-2 {
        font-size: clamp(0.85rem, 3.8vw, 1rem);
    }

    .trustindex-badge {
        transform: scale(0.78);
    }

    .specialty-item,
    .specialty-subitem {
        padding: 1rem 0.85rem;
    }

    .specialty-expandable {
        padding-right: 2.5rem;
    }

    .expand-icon {
        right: 1rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.6rem;
    }

    .contact-form-title {
        font-size: 1.3rem;
    }

    .contact-number {
        font-size: 1.5rem;
    }

    .contact-item i {
        font-size: 1.7rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .team-img {
        height: clamp(280px, 85vw, 400px);
        object-position: center 28%;
    }

    .license-badge {
        top: 9px;
        left: 9px;
    }

    .license-badge-img {
        width: clamp(54px, 22vw, 84px);
    }

    .form-buttons .btn {
        max-width: 420px;
        padding: 11px 18px;
        font-size: 0.88rem;
    }

    .footer-content,
    .footer-info {
    text-align: center;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: calc(var(--header-height) + 1rem) 0.85rem 1.5rem;
        gap: 1rem;
        background-position: center 38%;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .hero-subtitle-1 {
    font-size: 0.9rem;
    }

    .hero-subtitle-2 {
        font-size: 0.8rem;
    }

    .trustindex-badge {
        transform: scale(0.72);
    }

    .btn {
        font-size: 0.88rem;
        padding: 12px 18px;
    }

    .form-buttons .btn {
        max-width: 360px;
        padding: 9px 16px;
        font-size: 0.84rem;
    }

    .specialty-item,
    .specialty-subitem {
        font-size: 0.85rem;
        padding: 0.9rem 0.75rem;
    }

    .specialty-expandable {
        padding-right: 2.3rem;
    }

    .expand-icon {
        right: 0.75rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.4rem;
    }

    .contact-form-title {
        font-size: 1.2rem;
    }

    .contact-number {
        font-size: 1.4rem;
    }

    .contact-item i {
        font-size: 1.6rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .footer-menu ul {
        gap: 0.75rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }
}

/* Retina background safety */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* ======= Article Responsive ======= */
@media (max-width: 1024px) {
    .article-main-title {
        font-size: 2.2rem;
    }
.article-main-img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .article-section {
        padding: 5.5rem 0 3.25rem;
    }
    .article-main-title {
    font-size: 2rem;
    }
    .article-main-img {
        height: 320px;
    }
    .article-content p,
    .article-list {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .article-main-title {
        font-size: 1.8rem;
    }
    .article-main-img {
        height: 260px;
    }
    .article-cta {
        padding: 1.5rem;
    }
    .article-buttons .btn {
        flex: 1 1 100%;
        width: 100%;
        max-width: 320px;
    }
}

/* ======= Blog Responsive ======= */
@media (max-width: 1024px) {
    .blog-hero {
        padding: 7rem 0 3.75rem;
    }

    .blog-title {
        font-size: 2.8rem;
    }

    .blog-subtitle {
        font-size: 1.05rem;
    }

    .blog-content {
        padding: 3.5rem 0;
    }

    .blog-grid {
        max-width: 840px;
        gap: 2.25rem;
    }

    .blog-article .article-content {
        padding: 1.75rem;
    }

    .blog-article .article-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 3rem;
    }

    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-content {
        padding: 3rem 0;
    }

    .blog-grid {
        max-width: 100%;
        gap: 2rem;
    }

    .blog-article .article-image {
        height: 220px;
    }

    .blog-article .article-content {
        padding: 1.5rem;
    }

    .blog-article .article-title {
        font-size: 1.55rem;
    }

    .blog-article .article-excerpt {
        font-size: 0.95rem;
    }

    .article-link {
        padding: 11px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 5.5rem 0 2.5rem;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }

    .blog-subtitle {
        font-size: 0.95rem;
    }

    .blog-content {
        padding: 2.5rem 0;
    }

    .blog-grid {
        gap: 1.75rem;
    }

    .blog-article {
        border-radius: 14px;
    }

    .blog-article .article-image {
        height: 200px;
    }

    .blog-article .article-content {
        padding: 1.35rem;
        gap: 0.85rem;
    }

    .blog-article .article-title {
        font-size: 1.4rem;
    }

    .blog-article .article-excerpt {
        font-size: 0.9rem;
    }

    .blog-article .article-meta {
        gap: 1.25rem;
        font-size: 0.88rem;
    }

    .article-link {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.92rem;
    }
}

@media (max-width: 360px) {
    .blog-title {
        font-size: 1.95rem;
    }

    .blog-article .article-image {
        height: 180px;
    }

    .blog-article .article-title {
        font-size: 1.3rem;
    }

    .blog-article .article-content {
        padding: 1.2rem;
    }
}

/* Teléfono en header */
.call-number {
    margin-right: 1rem;
    color: var(--primary-black);
    background: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.call-number:hover {
    color: var(--primary-black);
    background: var(--primary-gold);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

/* Botón-ícono para móviles */
.call-button {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    font-size: 1.2rem;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.call-button:hover {
    color: var(--primary-black);
    background: var(--primary-gold);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .call-number {
        display: none;
    }
}
