/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #c41e3a;
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-primary: 'Rajdhani', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-secondary);
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

/* Header */
.site-header {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: var(--border-opacity, 1);
}

.site-header .container {
    max-width: 100%;
    padding: 0 0 50px 0;
    height: 100%;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: left center;
}

.logo img {
    width: 500px;
    height: auto;
}

/* Main Navigation */
.main-nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

/* Hamburger button - oculto en desktop */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Sidebar mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 25px;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}

.sidebar-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

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

.skip-to-content {
    position: absolute;
    left: -9999px;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
    background: var(--color-primary);
    color: white;
    padding: 10px;
    z-index: 9999;
}

/* Botón WhatsApp en header */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: fixed;
    right: 5%;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Ocultar el botón flotante */
.wdt-button {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

/* Kanji rojo watermark (derecha) */
.hero-kanji-watermark {
    position: absolute;
    right: -5%;
    top: 5%;
    height: 90%;
    width: auto;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

/* Layout 3 columnas del hero */
.hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    flex-grow: 1;
}

.hero-col-left {
    width: 15%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 5%;
}

.hero-col-center {
    width: 70%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-col-right {
    width: 15%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 10%;
}

/* Ramas de cerezo (con parallax mouse-move) */
.hero-branch-left {
    width: 100%;
    max-width: 360px;
    height: auto;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hero-branch-right {
    width: 100%;
    max-width: 360px;
    height: auto;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Contenido de texto del hero */
.hero-content {
    text-align: center;
    padding: 60px 0 40px;
    width: 100%;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.15;
    color: var(--color-white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-white);
    max-width: 850px;
    margin: 0 auto;
}

/* Área del samurái con sol rojo */
.hero-samurai-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1;
    min-height: 40vh;
    overflow: visible;
}

.hero-sun {
    position: absolute;
    width: 95vw;
    max-width: 1470px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    object-fit: contain;
}

.hero-samurai {
    position: relative;
    z-index: 2;
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* Subtitle Section */
.subtitle-section {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle-decoration {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.katana {
    width: 80px;
    height: auto;
    display: block;
    flex: 0 0 auto;
    padding: 0 5px;
}

.subtitle-text {
    font-style: normal;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
    line-height: 1;
    flex: 0 0 max-content;
    text-align: center;
}

/* Beneficios Section */
.beneficios-section {
    padding: 0 6%;
    background-color: #f8f8f8;
}

.beneficios-section .container {
    max-width: 100%;
    padding: 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2.67%;
    width: 100%;
}

.beneficio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.beneficio-image {
    width: 100%;
    min-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.beneficio-card:hover .beneficio-image img {
    transform: scale(1.05);
}

.beneficio-content {
    padding: 35px;
}

.beneficio-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 700;
}

.beneficio-content p {
    line-height: 1.8;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Red CTA Section (parallax) */
.red-cta-section {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.red-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.red-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(180, 30, 10, 0.85);
    z-index: 2;
}

.red-cta-content {
    position: relative;
    z-index: 3;
    padding: 60px 8%;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.red-cta-heading {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.red-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.red-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.red-cta-button:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* Welcome Section (3 columnas) */
.welcome-section {
    background-color: #000000;
    color: var(--color-white);
    padding: 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
}

.welcome-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0 60px 0;
}

.welcome-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Primera columna: el kanji no debe distorsionarse */
.welcome-col:first-child .welcome-image {
    background-color: #000000;
}

.welcome-col:first-child .welcome-image img {
    object-fit: contain;
    width: 65%;
    height: 65%;
}

.welcome-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: 1px;
    padding: 0 25px;
}

.welcome-link-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 25px;
}


.welcome-link {
    font-family: var(--font-primary);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.welcome-link:hover {
    color: #ff2d55;
}

.welcome-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    padding: 0 25px;
    font-style: italic;
}

/* Contact Info Section */
.contact-info-section {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 60px 0 0;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-block {
    text-align: center;
    padding: 30px 20px;
    flex: 1;
}

.contact-heading {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: #dd3333;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-white);
}

.contact-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    background-color: rgba(255, 255, 255, 0.25);
}

.contact-divider-horizontal {
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 0 auto;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.contact-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #e00f1c;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-icon-circle:hover {
    background-color: #ff2d55;
    transform: scale(1.1);
}

.contact-map {
    width: 100%;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

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

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

.footer-info h4 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-detail a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

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

.footer-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin: 10px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

/* Katana Heading Decorators */
.heading-decoration {
    text-align: center;
}

.heading-decoration .katana {
    display: inline-block;
    vertical-align: middle;
}

.heading-decoration p,
.heading-decoration h4 {
    display: inline;
}


/* Adjust margins when heading-decoration wraps a contact-heading */
.heading-decoration .contact-heading {
    margin-bottom: 0;
}

/* Red CTA subtitle inside heading-decoration */
.red-cta-content .heading-decoration {
    margin-bottom: 30px;
}

.heading-decoration .red-cta-subtitle {
    margin-bottom: 0;
}

/* Footer heading inside heading-decoration */
.footer-info .heading-decoration {
    margin-bottom: 25px;
}

.footer-info .heading-decoration h4 {
    margin-bottom: 0;
}

/* Shuriken: Scroll-to-Top Button */
.shuriken-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e00f1c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-white);
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.shuriken-btn.visible {
    opacity: 1;
    visibility: visible;
}

.shuriken-btn:hover {
    background-color: #000000;
}

.shuriken-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: none; /* rotation handled by JS */
}

/* Spin rápido al hacer click (scroll-to-top) */
.shuriken-btn.spinning .shuriken-icon {
    animation: shuriken-fast-spin 0.6s linear;
}

@keyframes shuriken-fast-spin {
    from { transform: rotate(var(--shuriken-angle, 0deg)); }
    to   { transform: rotate(calc(var(--shuriken-angle, 0deg) + 1080deg)); }
}

/* =============================================
   RESPONSIVE
   Targets: iPhone SE (375px), Galaxy S21 (360px),
   iPhone 14 (390px), Pixel 5 (393px),
   iPhone Pro Max (430px), tablets (768px)
   ============================================= */

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

    /* Header - cambiar overflow para permitir nav wrapped */
    .site-header {
        overflow: visible;
    }

    .site-header .container {
        padding: 10px 0 10px 0;
    }

    .header-content {
        width: 95%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo img {
        width: 280px;
    }

    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .btn-whatsapp {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .btn-whatsapp svg {
        width: 24px;
        height: 24px;
    }

    /* Hero */
    .hero-col-left,
    .hero-col-right {
        width: 10%;
    }

    .hero-col-center {
        width: 80%;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-branch-left,
    .hero-branch-right {
        max-width: 150px;
    }

    .hero-samurai {
        width: 100%;
        height: auto;
    }

    .hero-sun {
        width: 110vw;
    }

    /* Subtitle */
    .subtitle-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .subtitle-decoration {
        padding: 0;
    }

    .katana {
        width: 60px;
    }

    .subtitle-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Beneficios */
    .beneficios-section {
        padding: 0 4%;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .beneficio-image {
        min-width: unset;
    }

    .beneficio-content {
        padding: 20px;
    }

    .beneficio-content h3 {
        font-size: 1.3rem;
    }

    /* Red CTA */
    .red-cta-content {
        padding: 40px 6%;
    }

    .red-cta-heading {
        font-size: 1.5rem;
    }

    .red-cta-subtitle {
        font-size: 0.95rem;
    }

    /* Welcome */
    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .welcome-image {
        width: 250px;
        height: 250px;
    }

    /* Contact */
    .contact-row {
        flex-direction: column;
        align-items: center;
    }

    .contact-divider {
        width: 90%;
        height: 1px;
        align-self: auto;
    }

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

    .contact-map iframe {
        height: 300px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-detail a {
        font-size: 0.9rem;
    }

    /* Katana decorators */
    .katana {
        width: 50px;
    }

    .welcome-link-wrapper .katana {
        width: 60px;
    }

    /* Shuriken */
    .shuriken-btn {
        width: 42px;
        height: 42px;
        bottom: 15px;
        right: 15px;
    }

    .shuriken-icon {
        width: 22px;
        height: 22px;
    }
}

/* --- Mobile (max-width: 480px) — iPhone, Galaxy, Pixel --- */
@media (max-width: 480px) {

    /* Header */
    .site-header .container {
        padding: 8px 0 5px 0;
    }

    .header-content {
        width: 95%;
    }

    .logo img {
        width: 250px;
    }

    .btn-whatsapp {
        width: 40px;
        height: 40px;
        right: 3%;
    }

    .btn-whatsapp svg {
        width: 20px;
        height: 20px;
    }

    /* Hero */
    .hero-section {
        min-height: 100svh;
    }

    .hero-col-left {
        width: 5%;
        overflow: visible;
        z-index: 0;
    }

    .hero-col-right {
        width: 5%;
        overflow: visible;
        z-index: 0;
        padding-bottom: 35%;
    }

    .hero-col-center {
        width: 90%;
        justify-content: space-between;
        z-index: 1;
    }

    .hero-content {
        padding: 20vh 0 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .hero-branch-left,
    .hero-branch-right {
        width: 190px;
        max-width: none;
    }

    .hero-samurai-area {
        min-height: 25vh;
    }

    .hero-samurai {
        width: 100%;
        height: auto;
    }

    .hero-sun {
        width: 130vw;
    }

    .hero-kanji-watermark {
        height: 60%;
        opacity: 0.2;
    }

    /* Subtitle */
    .subtitle-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .subtitle-decoration {
        padding: 0;
    }

    .katana {
        width: 40px;
    }

    .subtitle-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    /* Beneficios */
    .beneficios-section {
        padding: 0 3%;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beneficio-image {
        min-width: unset;
        aspect-ratio: 16 / 10;
    }

    .beneficio-content {
        padding: 20px 15px;
    }

    .beneficio-content h3 {
        font-size: 1.3rem;
    }

    .beneficio-content p {
        font-size: 0.85rem;
    }

    /* Red CTA */
    .red-cta-section {
        min-height: 200px;
    }

    .red-cta-bg {
        background-attachment: scroll;
    }

    .red-cta-content {
        padding: 35px 5%;
    }

    .red-cta-heading {
        font-size: 1.3rem;
    }

    .red-cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .red-cta-button {
        font-size: 0.8rem;
        padding: 10px 22px;
        letter-spacing: 1px;
    }

    .heading-decoration .katana {
        width: 40px;
    }

    /* Welcome */
    .welcome-col {
        padding: 25px 15px 40px;
    }

    .welcome-image {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .welcome-title {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .welcome-link-wrapper {
        gap: 0;
        margin-bottom: 15px;
    }

    .welcome-link-wrapper .katana {
        width: 45px;
    }

    .welcome-link {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .welcome-text {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    /* Contact */
    .contact-info-section {
        padding: 40px 0 0;
        background-attachment: scroll;
    }

    .contact-block {
        padding: 20px 15px;
    }

    .contact-heading {
        font-size: 1.3rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-icon-circle {
        width: 56px;
        height: 56px;
    }

    .contact-icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .contact-icons {
        gap: 20px;
    }

    .contact-map iframe {
        height: 250px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-info h4 {
        font-size: 1.3rem;
    }

    .footer-detail {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-detail a {
        font-size: 0.85rem;
    }

    /* Shuriken */
    .shuriken-btn {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
    }

    .shuriken-icon {
        width: 20px;
        height: 20px;
    }
}

/* --- Small phones (max-width: 360px) — iPhone SE, Galaxy S small --- */
@media (max-width: 360px) {

    .logo img {
        width: 170px;
    }

    .main-nav {
        gap: 8px;
    }

    .nav-link {
        font-size: 0.6rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .hero-description {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .welcome-image {
        width: 170px;
        height: 170px;
    }

    .contact-icon-circle {
        width: 48px;
        height: 48px;
    }

    .contact-icon-circle svg {
        width: 18px;
        height: 18px;
    }
}

/* --- Pantallas con poca altura (ej. MacBook 14") --- */
@media (max-height: 900px) and (min-width: 769px) {
    .logo img {
        width: 350px;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 30px 0 20px;
    }

    .hero-branch-left,
    .hero-branch-right {
        max-width: 200px;
    }

    .hero-sun {
        width: 75vw;
    }

    .hero-samurai-area {
        min-height: 30vh;
    }
}
