@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
    /* Colores base existentes */
    --bg-color: #fff8f3;
    --snd-bg-color: #ffffff;
    --accent-bg: #1a1a1a;
    --accent-alt: #a4161a;
    --text-color: #2c2c2c;
    --text-light: #ffffff;
    --btn-text: #ffffff;
    --hover-shadow: rgba(0, 0, 0, 0.1);
    --highlight: #F54A2F;

    /* Colores inspirados en la tarjeta */
    --card-bg: #F5E9D7;
    /* Fondo con ondas */
    --dragon-red: #C0392B;
    /* Ilustración del dragón */
    --card-text: #4A4A4A;
    /* Texto principal */
    --decorative-blue: #A3B1B8;
    /* Detalles decorativos */
}

/* ===== GENERAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent-bg);
    border-radius: 10px;
    border: 3px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-alt);
}

/* ===== TITULOS DE SECCIÓN ===== */
.section__header {
    font-family: 'Merriweather', serif;
    font-size: 3.6rem;
    color: var(--accent-bg);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
}

.section__header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.2rem;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background: var(--accent-alt);
    border-radius: 1rem;
}

section[id] {
    scroll-margin-top: 120px;
}


/* ===== LOADER===== */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--snd-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

#loader-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.custom-loader {
    width: 120px;
    height: 22px;
    border-radius: 20px;
    color: var(--accent-bg);
    border: 2px solid currentColor;
    position: relative;
}

.custom-loader::before {
    content: "";
    position: absolute;
    margin: 2px;
    inset: 0 100% 0 0;
    border-radius: inherit;
    background: var(--highlight);
    animation: p6 2s infinite;
}

@keyframes p6 {
    100% {
        inset: 0;
    }
}


/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12rem;
    padding: 0 6%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #000;
}

/* LOGO*/
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    width: 160px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin-right: 2rem;
}

.navbar a {
    font-family: 'Merriweather', serif;
    position: relative;
    font-size: 1.8rem;
    color: var(--text-color);
    padding: 0.5rem 0.8rem;
    border-radius: 0.4rem;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: var(--accent-alt);
    transition: width 0.3s ease-in-out;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: var(--accent-alt);
}

/* ===== MENU ICON ===== */
.menu-icon {
    display: none;
    font-size: 3rem;
    color: var(--accent-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1.2rem;
}

.menu-icon:hover {
    color: var(--accent-alt);
    transform: scale(1.1);
}

/* ===== NAVBAR RESPONSIVE ===== */
@media (max-width: 992px) {
    .menu-icon {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 7rem;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2.5rem;
        transition: all 0.5s ease;
        box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding-top: 3rem;
    }

    .navbar.active {
        right: 0;
    }

    .navbar a {
        font-size: 1.8rem;
        color: var(--accent-bg);
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease-out;
    }

    .navbar.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar a:hover {
        color: var(--accent-alt);
    }
}

/* ===== BOTÓN AGENDAR YA ===== */
.btn-agendar {
    background-color: var(--snd-bg-color);
    border: 2px solid var(--highlight);
    padding: 5px;
    position: relative;
    width: 10.5em;
    height: 3.2em;
    transition: 0.5s ease;
    font-size: 1.6rem;
    border-radius: 0.5em;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 3px 8px var(--hover-shadow);
}

.btn-agendar p {
    position: absolute;
    top: 0.6em;
    left: 1.4em;
    margin: 0;
    padding: 0;
    transition: 0.5s ease;
    color: var(--highlight);
    font-weight: 600;
}

.btn-agendar svg {
    position: absolute;
    top: 0.75em;
    right: 1.2em;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: 0.5s ease;
    height: 1.2em;
    fill: var(--text-light);
}

.btn-agendar:hover p {
    left: 0.7em;
    color: var(--text-light);
}

.btn-agendar:hover svg {
    opacity: 1;
}

.btn-agendar:hover {
    background-color: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 74, 47, 0.4);
}


/* ===== HOME ===== */
.home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url('/Img/Sushi.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0.55);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.home-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.home-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    font-family: 'Merriweather', serif;
}

.home-content h1 .jp {
    color: #f4b321;
    font-weight: 800;
}

.home-content p {
    font-size: 2rem;
    margin-top: 1.5rem;
    color: #eaeaea;
    font-weight: 400;
    font-family: 'Merriweather', serif;
}


/* SUSHI SECTION */
.sushi-bar {
    padding: 8rem 8% 10rem;
    text-align: center;
    position: relative;
    min-height: 100vh;
    background: url("/Img/Fondo.jpg") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sushi-bar::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 0;
}

.sushi-bar__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    z-index: 1;
}

.sushi-bar__grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

.sushi-bar__grid img:hover {
    transform: scale(1.06);
    filter: brightness(90%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sushi-bar__text {
    margin: 1rem auto 4rem;
    font-size: 2rem;
    color: var(--text-color);
    position: relative;
    font-family: 'Merriweather', serif;
}



/* TEPPANYAKI */
.teppanyaki-show__video {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    border-radius: 20px;
}

.teppanyaki-show__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.teppanyaki-show__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.teppanyaki-show__overlay h3 {
    font-size: 3rem;
    font-family: 'Merriweather', serif;
}


/* EXPERIENCIA */
.izakaya-experience {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 6rem 8%;
    min-height: 100vh;
    background: url("/Img/Fondo.jpg") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.izakaya-experience::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    z-index: 0;
}

.experience__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.experience__text {
    text-align: center;
    max-width: 700px;
}

.experience__text h2 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.experience__text p {
    font-size: 2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-family: 'Merriweather', serif;
}

.experience__media {
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
}

.media__item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.media__item.video video {
    height: 400px;
    width: auto;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, filter 0.4s ease;
}






/* ===== FOOTER ===== */
.footer__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 8%;
    background: var(--accent-bg);
    color: #fff;
}

.footer__col {
    flex: 1 1 25rem;
}

.footer__logo img {
    width: 160px;
    margin-top: -10px;
}

.footer__col h4 {
    font-size: 2rem;
    margin-top: 1.5rem;
    color: var(--highlight);
    font-family: 'Merriweather', serif;
}

.footer__col p,
.footer__col a {
    font-size: 2rem;
    color: #f1f1f1;
    margin: 0.5rem 0;
    transition: 0.3s;
    font-family: 'Merriweather', serif;
}

.footer__socials {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.Btn {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.svgContainer i {
    font-size: 2.4rem;
    color: var(--btn-text);
    transition: 0.3s;
    font-family: 'Merriweather', serif;
}

.Btn:hover i {
    transform: scale(1.2);
}

.Btn[href*="instagram"]:hover i {
    color: #E1306C;
}

.Btn[href*="wa.me"]:hover i {
    color: #25D366;
}

.Btn[href*="tiktok"]:hover i {
    color: #fff;
    transform: scale(1.2);
}

.Btn[href*="facebook"]:hover i {
    color: #1877F2;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.footer__links a {
    font-size: 2rem;
    color: #f1f1f1;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: color 0.3s ease;
    font-family: 'Merriweather', serif;
}

.footer__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: var(--accent-);
    transition: width 0.3s ease;
}

.footer__links a:hover {
    color: var(--accent-alt);
}

.footer__col p i.bx {
    color: #fbc02d;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.footer__email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ecf0f1;
    font-size: 1.4rem;
    transition: color 0.3s;
    font-family: 'Merriweather', serif;
}

.footer__email i {
    font-size: 2rem;
    color: var(--highlight);
    font-family: 'Merriweather', serif;
}

.footer__email span {
    font-size: 2rem;
    color: var(--snd-bg-color);
    font-family: 'Merriweather', serif;
}

#tip-footer {
    font-size: 1.6rem;
    color: #ecf0f1;
    line-height: 1.6;
    margin-top: 0.5rem;
    font-family: 'Merriweather', serif;
}

.footer__copyright {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 1.6rem;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Merriweather', serif;
}

.footer__copyright span#currentYear {
    font-weight: bold;
    color: var(--accent-alt);
}

.footer__brand {
    color: #ffffff;
    font-weight: bold;
}


/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .section__header {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }

    .section__header::after {
        width: 4rem;
        height: 0.3rem;
    }

    .panWrapper {
        width: 140px;
        gap: 12px;
    }

    .food {
        width: 60%;
        left: 5px;
    }

    .panBase {
        width: 60%;
        height: 18px;
    }

    .panHandle {
        width: 50%;
        height: 8px;
    }

    .panShadow {
        width: 50px;
        height: 6px;
        margin-left: 10px;
    }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
    html {
        font-size: 56.25%;
    }

    .section__header {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .panWrapper {
        width: 160px;
        gap: 16px;
    }

    .food {
        width: 50%;
        left: 8px;
    }

    .panBase {
        width: 55%;
        height: 20px;
    }

    .panHandle {
        width: 45%;
    }

    .panShadow {
        width: 60px;
        height: 7px;
    }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .section__header {
        font-size: 3.2rem;
    }

    .panWrapper {
        width: 180px;
    }

    .food {
        width: 48%;
    }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
    html {
        font-size: 62.5%;
    }

    .section__header {
        font-size: 3.4rem;
    }

    .panWrapper {
        width: 190px;
    }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
    html {
        font-size: 65%;
    }

    .section__header {
        font-size: 3.6rem;
    }

    .panWrapper {
        width: 200px;
    }
}


/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
    .header {
        height: 9rem;
        padding: 0 4%;
    }

    .logo-img {
        width: 120px;
    }

    .navbar a {
        font-size: 1.6rem;
    }

    .menu-icon {
        font-size: 2.6rem;
        margin-left: 0.8rem;
    }

    .btn-agendar {
        width: 9.5em;
        height: 3em;
        font-size: 1.4rem;
    }

    .btn-agendar p {
        top: 0.6em;
        left: 1.2em;
    }

    .btn-agendar svg {
        top: 0.75em;
        right: 1em;
        height: 1em;
    }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
    .header {
        height: 10rem;
        padding: 0 5%;
    }

    .logo-img {
        width: 140px;
    }

    .navbar a {
        font-size: 1.7rem;
    }

    .menu-icon {
        font-size: 2.8rem;
    }

    .btn-agendar {
        width: 10em;
        height: 3.1em;
        font-size: 1.5rem;
    }

    .btn-agendar p {
        left: 1.3em;
    }

    .btn-agendar svg {
        right: 1.1em;
    }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
    .header {
        height: 11rem;
        padding: 0 5.5%;
    }

    .logo-img {
        width: 150px;
    }

    .navbar a {
        font-size: 1.8rem;
    }

    .btn-agendar {
        width: 10.5em;
        height: 3.2em;
        font-size: 1.6rem;
    }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
    .header {
        height: 11.5rem;
        padding: 0 6%;
    }

    .logo-img {
        width: 160px;
    }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
    .header {
        height: 12rem;
        padding: 0 8%;
    }

    .logo-img {
        width: 180px;
    }

    .navbar a {
        font-size: 1.9rem;
    }

    .btn-agendar {
        width: 11em;
        height: 3.4em;
        font-size: 1.7rem;
    }

    .btn-agendar p {
        left: 1.5em;
    }

    .btn-agendar svg {
        right: 1.3em;
        height: 1.3em;
    }
}



/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
    .home-content h1 {
        font-size: 3rem;
    }

    .home-content p {
        font-size: 1.6rem;
    }

    .sushi-bar {
        padding: 5rem 5% 6rem;
    }

    .sushi-bar__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sushi-bar__grid img {
        height: 200px;
        border-radius: 12px;
    }

    .sushi-bar__text {
        font-size: 1.6rem;
    }

    .teppanyaki-show__video {
        height: 50vh;
        border-radius: 12px;
    }

    .teppanyaki-show__overlay h3 {
        font-size: 2.2rem;
    }

    .izakaya-experience {
        padding: 5rem 5%;
        gap: 2rem;
    }

    .experience__text h2 {
        font-size: 2.2rem;
    }

    .experience__text p {
        font-size: 1.6rem;
    }

    .experience__media {
        grid-template-columns: 1fr;
    }

    .media__item img,
    .media__item.video video {
        height: 240px;
        border-radius: 12px;
    }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 4rem;
    }

    .home-content p {
        font-size: 1.8rem;
    }

    .sushi-bar {
        padding: 6rem 6% 8rem;
    }

    .sushi-bar__grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .sushi-bar__grid img {
        height: 240px;
    }

    .sushi-bar__text {
        font-size: 1.8rem;
    }

    .teppanyaki-show__video {
        height: 60vh;
    }

    .teppanyaki-show__overlay h3 {
        font-size: 2.6rem;
    }

    .izakaya-experience {
        padding: 6rem 6%;
        gap: 3rem;
    }

    .experience__text h2 {
        font-size: 2.4rem;
    }

    .experience__text p {
        font-size: 1.8rem;
    }

    .experience__media {
        grid-template-columns: 1fr 1fr;
    }

    .media__item img,
    .media__item.video video {
        height: 300px;
    }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
    .home-content h1 {
        font-size: 4.4rem;
    }

    .sushi-bar {
        padding: 7rem 6% 9rem;
    }

    .sushi-bar__grid img {
        height: 260px;
    }

    .teppanyaki-show__video {
        height: 65vh;
    }

    .teppanyaki-show__overlay h3 {
        font-size: 2.8rem;
    }

    .izakaya-experience {
        padding: 6rem 6%;
    }

    .experience__media {
        grid-template-columns: 1fr 0.8fr 1fr;
    }

    .media__item img,
    .media__item.video video {
        height: 360px;
    }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
    .home-content h1 {
        font-size: 4.6rem;
    }

    .sushi-bar__grid img {
        height: 270px;
    }

    .teppanyaki-show__video {
        height: 70vh;
    }

    .media__item img,
    .media__item.video video {
        height: 380px;
    }
}

/* === ≤ 1300px ancho y ≤ 800px alto === */
@media (max-width: 1300px) {
    .experience__media {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .media__item img,
    .media__item.video video {
        height: 280px;
        width: 100%;
        object-fit: cover;
        border-radius: 14px;
    }

    .izakaya-experience {
        padding: 5rem 6%;
    }

    .experience__text h2 {
        font-size: 2.4rem;
    }

    .experience__text p {
        font-size: 1.7rem;
    }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
    .home-content h1 {
        font-size: 5rem;
    }

    .sushi-bar {
        padding: 8rem 8% 10rem;
    }

    .sushi-bar__grid img {
        height: 280px;
    }

    .teppanyaki-show__video {
        height: 75vh;
    }

    .teppanyaki-show__overlay h3 {
        font-size: 3rem;
    }

    .izakaya-experience {
        padding: 6rem 8%;
    }

    .media__item img,
    .media__item.video video {
        height: 400px;
    }
}


/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
    .footer__container {
        flex-direction: column;
        padding: 2.5rem 5%;
        gap: 1.5rem;
    }

    .footer__col h4 {
        font-size: 1.8rem;
    }

    .footer__col p,
    .footer__col a,
    .footer__links a {
        font-size: 1.5rem;
    }

    .footer__logo img {
        width: 140px;
    }

    .footer__email,
    .footer__email span {
        font-size: 1.5rem;
    }

    .footer__email i {
        font-size: 1.8rem;
    }

    .footer__socials {
        gap: 2rem;
    }

    .Btn {
        width: 3.6rem;
        height: 3.6rem;
    }

    .svgContainer i {
        font-size: 2rem;
    }

    #tip-footer {
        font-size: 1.4rem;
    }

    .footer__copyright {
        font-size: 1.4rem;
    }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
    .footer__container {
        padding: 3rem 6%;
        gap: 2rem;
    }

    .footer__col h4 {
        font-size: 1.9rem;
    }

    .footer__col p,
    .footer__col a,
    .footer__links a {
        font-size: 1.6rem;
    }

    .footer__email span {
        font-size: 1.8rem;
    }

    .footer__email i {
        font-size: 1.9rem;
    }

    .footer__copyright {
        font-size: 1.5rem;
    }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
    .footer__container {
        padding: 3rem 7%;
    }

    .footer__col p,
    .footer__col a,
    .footer__links a {
        font-size: 1.7rem;
    }

    .footer__email span {
        font-size: 1.9rem;
    }

    .footer__copyright {
        font-size: 1.6rem;
    }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
    .footer__container {
        padding: 3rem 8%;
    }

    .footer__col h4 {
        font-size: 2rem;
    }

    .footer__col p,
    .footer__col a,
    .footer__links a {
        font-size: 1.8rem;
    }

    .footer__email span {
        font-size: 2rem;
    }

    .footer__copyright {
        font-size: 1.6rem;
    }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
    .footer__container {
        padding: 4rem 10%;
        gap: 2.5rem;
    }

    .footer__col h4 {
        font-size: 2.2rem;
    }

    .footer__col p,
    .footer__col a,
    .footer__links a {
        font-size: 1.9rem;
    }

    .footer__email span {
        font-size: 2.1rem;
    }

    .footer__copyright {
        font-size: 1.7rem;
    }
}