     /* --- SECCIÓN HATSU --- */
        .hatsu-section {
            background-color: #000000;
            padding: 50px 0 80px 0;
            /* border-top: 3px solid #8e8d8d;
            border-bottom: 3px solid #8e8d8d; */
        }

        /* Texto holográfico/gradiente */
        .gradient-text {
            background: linear-gradient(90deg, #f3d4ce, #a3f7eb, #e7c8f9, #f3d4ce);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
        }

        .hatsu-title {
            font-size: 6rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0;
            letter-spacing: 2px;
        }

        .hatsu-subtitle {
            color: white;
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 1px;
        }

        .hatsu-subtitle span {
            color: #b7dbf3;
            /* Tono pastel para "TEA" */
        }

        .hello-color-text {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.1;
            text-align: right;
        }

        /* Tarjetas Hatsu */
        .hatsu-card {
            background-color: #8c8c8c;
            border-radius: 15px;
            border: 2px solid #8c8c8c;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .hatsu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
        }

        .hatsu-img-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 20px 10px;
            text-align: center;
            margin: 2px;
            overflow: hidden;
        }

        .hatsu-img-box img {
            height: 180px;
            object-fit: contain;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .hatsu-card:hover .hatsu-img-box img {
            transform: scale(1.1);
        }

        .hatsu-card-text {
            padding: 12px 10px;
            color: white;
            line-height: 1.2;
        }

        .hatsu-card-text h6 {
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 2px;
        }

        .hatsu-card-text p {
            font-size: 0.65rem;
            margin-bottom: 0;
        }

        /* --- SECCIÓN MR TEA --- */
        .mrtea-section {
            /* background: linear-gradient(to bottom, #4cb016, #2d9406); */
            background-image: url(../img/tea/background_MrTea.png) !important;
            background-size:cover !important;
            background-repeat: no-repeat !important;
            /* Simulación del fondo verde */
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        /* Borde irregular decorativo arriba del pie de página */
        .wavy-bottom {
            width: 100%;
            height: 40px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230d83c9" fill-opacity="1" d="M0,160L48,165.3C96,171,192,181,288,170.7C384,160,480,128,576,133.3C672,139,768,181,864,192C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .mrtea-logo {
            max-width: 100%;
            height: auto;
        }

        /* Tarjetas Mr Tea */
        .mrtea-card {
            border-radius: 20px;
            border: none;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .mrtea-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .mrtea-card.peach {
            background-color: #ff7b00;
        }

        .mrtea-card.lemon {
            background-color: #2b8b13;
        }

        .mrtea-img-box {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 30px 10px;
            text-align: center;
            margin: 3px;
            overflow: hidden;
        }

        .mrtea-img-box img {
            height: 250px;
            object-fit: contain;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .mrtea-card:hover .mrtea-img-box img {
            transform: scale(1.1);
        }

        .mrtea-card-text {
            padding: 15px;
            color: white;
        }

        .mrtea-card-text h5 {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 2px;
        }

        .mrtea-card-text p {
            font-size: 0.85rem;
            margin-bottom: 0;
        }
                

        @media (max-width:480px) {

        .hatsu-subtitle{
            text-align: center;
        }


        .hello-color-text{
            text-align: center;
        }
        }