/* RESET BASE MOBILE */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f3eee9;
    display: flex;
    justify-content: center;
}

/* CONTENEDOR MOBILE REAL */
.phone-container {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    background: #fffcfa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* HERO */
.hero {
    text-align: center;
    padding: 20px 16px 0;
}
/* DIFUMINADO COMPLETO EN TODOS LOS LADOS */
.hero-img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 14px;
    display: block;

    /* fade uniforme en los 4 lados */
    -webkit-mask-image: radial-gradient(ellipse at center,
        rgba(0,0,0,1) 48%,
        rgba(0,0,0,0.85) 56%,
        rgba(0,0,0,0.4) 69%,
        rgba(0,0,0,0) 73%);
    mask-image: radial-gradient(ellipse at center,
        rgba(0,0,0,1) 48%,
        rgba(0,0,0,0.85) 56%,
        rgba(0,0,0,0.4) 69%,
        rgba(0,0,0,0) 73%);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    margin: 8px 0 0;
    color: #3d3d3d;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    letter-spacing: 2px;
    color: #7a7a7a;
}

/* MENU */
.menu {
    padding: 18px 16px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* TARJETAS */
.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

/* efecto touch mobile */
.menu-item:active {
    transform: scale(0.98);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* ICONOS GRANDES + DIFUMINADOS */
.icon {
    width: 90px;
    height: 60px;
    object-fit: cover;

    -webkit-mask-image: radial-gradient(ellipse at center,
      rgba(0,0,0,1) 50%   /* más blur */
        rgba(0,0,0,0.8) 65%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at center,
      rgba(0,0,0,1) 50%   /* más blur */
        rgba(0,0,0,0.8) 65%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0) 100%);
}

/* BOTONES COMO IMAGEN */
.img-btn {
    display: block;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Imagen ocupa todo el botón */
.img-btn img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;

    /* difuminado suave en todos los bordes */
    -webkit-mask-image: radial-gradient(ellipse 140% 120% at center,
        rgba(0,0,0,1) 65%,
        rgba(0,0,0,0.85) 80%,
        rgba(0,0,0,0.4) 92%,
        rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse 140% 120% at center,
        rgba(0,0,0,1) 65%,
        rgba(0,0,0,0.85) 80%,
        rgba(0,0,0,0.4) 92%,
        rgba(0,0,0,0) 100%);
}

/* efecto toque mobile */
.img-btn:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Espaciado del menú */
.menu {
    padding: 18px 16px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}