﻿/* Contenedor principal */
.tierraluna-landing {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee');
    background-size: cover;
    background-position: center;
    padding: 0 0;
}

/* Tarjeta central */
.tierraluna-card {
    max-width: 720px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

    /* Tipografía */
    .tierraluna-card h1 {
        font-size: 2.6rem;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .tierraluna-card h2 {
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 28px;
        opacity: 0.95;
    }

    .tierraluna-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 18px;
        opacity: 0.95;
    }

/* Botón WhatsApp */
.tierraluna-btn {
    display: inline-block;
    margin-top: 30px;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

    .tierraluna-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    }

/* Responsive */
@media (max-width: 600px) {
    .tierraluna-card {
        padding: 36px 24px;
    }

        .tierraluna-card h1 {
            font-size: 2.1rem;
        }

        .tierraluna-card h2 {
            font-size: 1.25rem;
        }
}
