/*
Theme Name: Landing Venta Dominios
Theme URI: https://efitrans.com
Author: Luis Fernando Rivera
Description: Landing minimalista internacional para efitrans.com y easytransvip.com.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing-venta
*/

/* Reset y Estilos Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: moveGradient 15s ease infinite;
    overflow: hidden;
    color: #ffffff;
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass-container {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 4rem 3rem;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.status-dot {
    width: 10px; height: 10px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px #00ff88;
}

.header-tag {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-block {
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.language-block:hover { transform: scale(1.05); }

.lang-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.main-text {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.domains-list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
    .main-text { font-size: 1.6rem; }
    .glass-container { padding: 3rem 1.5rem; }
}