body {
    font-family: 'Poppins', sans-serif;
    margin: 10px;
    padding: 10px;
    background-color: #f0f2f5; /* Fondo blanco/gris muy claro */
    color: #333333; /* Color de texto principal (casi negro) */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header {
    width: 100%;
    max-width: 1200px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.logo-placeholder {
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 80px;
    width:150px;
}
.logo-placeholder img{
    width: 100%;
}
 
.logo img{
height: 65px;
}

.nav-links a {
    color: #555555;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f73000;
}

.auth-buttons button {
    background-color: transparent;
    border: none;
    color: #333333;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95em;
    margin-left: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.auth-buttons .login {
    background-color: #333333;
    color: #FFFFFF;
}

.auth-buttons .login:hover {
    background-color: #f73000;
}

.auth-buttons .register {
    border: 1px solid #CCCCCC;
    color: #555555;
}

.auth-buttons .register:hover {
    border-color: #f73000;
    color: #f73000;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    flex-wrap: wrap; /* Para responsive */
    margin-top: 80px; /* Espacio para el header */
    
}

.text-section {
    flex: 1;
    min-width: 400px;
    text-align: left;
    padding-right: 40px;
}

.text-section h1 {
    font-size: 4em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333333; /* Negro para el título */
    font-weight: 700;
}

.text-section h1 span.highlight {
    color: #f73000; /* Naranja para la parte "click" o similar */
}

.text-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555555; /* Gris oscuro para el texto */
}

.cta-button {
    display: inline-block;
    background-color: #f73000;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e02c00;
    transform: translateY(-2px);
}

.image-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 40px;
}

.phone-mockup {
    width: 350px; /* Tamaño del mockup del teléfono */
    height: 650px;
    background-color: #333333; /* Color del teléfono */
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF; /* Pantalla interior blanca */
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    color: #333333;
    overflow: hidden;
}

.phone-screen img{
    width: 100%;
}

.screen-header {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333333;
}

.screen-content img {
    max-width: 90%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.screen-content p {
    font-size: 0.9em;
    text-align: center;
    color: #555555;
}

/* Elementos decorativos para simular "en construcción" con el color naranja */
.decor-line-orange {
    position: absolute;
    background-color: #f73000;
    height: 4px;
    width: 80px;
    bottom: -10px;
    left: 0;
    animation: expandLine 3s ease-in-out infinite alternate;
}

@keyframes expandLine {
    from { width: 50px; }
    to { width: 120px; }
}

.small-circle-orange {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #f73000;
    border-radius: 50%;
    top: 20%;
    right: 15%;
    opacity: 0.7;
    animation: pulseCircle 2s ease-in-out infinite alternate;
}

@keyframes pulseCircle {
    from { transform: scale(0.8); opacity: 0.5; }
    to { transform: scale(1.1); opacity: 0.9; }
}


/* Responsive */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .text-section {
        padding-right: 0;
        margin-bottom: 50px;
        min-width: auto;
        text-align: center;
    }

    .text-section h1 {
        font-size: 3em;
    }

    .image-section {
        padding-left: 0;
    }

    .header {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links a {
        margin: 0 10px;
    }

    .auth-buttons {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .text-section h1 {
        font-size: 2.5em;
    }

    .phone-mockup {
        width: 280px;
        height: 500px;
        padding: 10px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .auth-buttons button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}