body {
    font-family: 'Satoshi', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.logo-container {
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: 'Arial', sans-serif;
    font-size: 40px;
    margin-left: 8px;
    margin: 0%;
    margin-top: 5px;
}

.logo-image {
    width: 50px;
    height: auto;
    margin-left: -10px;
}

header {
    width: 100%;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: -72px;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-family: 'Russo One';
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5200FF;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Media queries para dispositivos pequeños */
@media (max-width: 768px) {

    .logo-container,
    header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        background-color: #000;
        position: absolute;
        top: 80px; /* Ajustar según el diseño */
        left: 0;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block; /* El botón siempre estará visible */
        cursor: pointer;
        font-size: 24px;
        color: white;
        position: absolute; /* Mantener el botón fijo */
        top: 15px; /* Ajustar según el diseño */
        right: 20px; /* Alinearlo a la derecha */
        z-index: 1000; /* Asegura que esté por encima del menú */
    }
}

@media (max-width: 480px) {
    .nav-links {
        /* Aquí puedes ajustar el estilo del menú para pantallas más pequeñas */
        top: 70px; /* Ajustar según el diseño */
        padding: 15px; /* Menos padding en pantallas más pequeñas */
    }

    .nav-links a {
        font-size: 14px; /* Reducir tamaño de fuente para mejor ajuste */
        padding: 8px 0; /* Ajustar el padding */
    }

    .menu-toggle {
        font-size: 20px; /* Reducir el tamaño del botón en pantallas más pequeñas */
        top: 10px; /* Ajustar su posición */
        right: 15px; /* Ajustar su posición */
    }
}

/* hero */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ajusta a la izquierda */
    padding: 0 50px;
    background: url('./img/extrellas.jpg') no-repeat center center/cover;
    position: static; 
}

.hero-content {
    max-width: 50%;
}

.hero-content h2 {
    font-family: 'Satoshi';
    font-size: 61px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 35px;
    margin-bottom: 30px;
}

.cta-button {
    font-family: 'Rajdhani';
    font-weight: 600;
    padding: 15px 35px;
    background-color: #5200FF;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6372FF; /* Cambia el color para ver el efecto del hover */
}

.hero-image {
    display: flex;
    justify-content: center; /* Asegura que el contenedor esté centrado */
}

.hero-image img {
    width: 100%;
    max-width: 850px; /* Ajusta el tamaño máximo para pantallas grandes */
    height: auto;
    display: block;
    margin: 0 auto; /* Centra la imagen horizontalmente */
}

.icon-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    z-index: 10; /* Asegura que el ícono esté por delante */
    position: relative; /* Para poder aplicar el z-index */
}

.icon-nav img {
    width: 80px;
    height: auto;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-content h2 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 28px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 28px;
    }

    .hero-image {
        text-align: center; /* Centrar la imagen del planeta */
        margin-right: 50px;
    }

    .hero-image img {
        max-width: 80%; /* Ajustar el tamaño de la imagen */
        margin: auto auto; /* Centrar horizontalmente */
        display: flex;
    }

    .icon-nav img {
        width: 50px; /* Ajusta el tamaño del ícono para tablets */
    }

    .icon-nav {
        margin-top: 10px;
    }
}

/* Estilos para dispositivos pequeños (celulares) */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center; /* Asegura que la imagen esté centrada verticalmente */
    }

    .hero-image img {
        max-width: 100%; /* Ajustar el tamaño para celulares */
        margin: 0 auto;
        display: block;
    }

    .icon-nav {
        display: flex; /* Asegúrate de que el contenedor esté visible */
        justify-content: center; /* Centra el ícono en la pantalla */
    }

    .icon-nav img {
        width: 50px; /* Reduce el tamaño del ícono en pantallas pequeñas */
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-image img {
        max-width: 100%;
        align-items: center;
    }

    .icon-nav {
        margin-top: 10px;
    }

    .icon-nav img {
        width: 40px; /* Ajuste adicional del tamaño del ícono */
    }
}

/* services */

.services {
    text-align: left; /* Mantiene la alineación a la izquierda en pantallas grandes */
    padding: 50px 50px;
    margin-top: 50px;
    margin-left: 30px;
    margin-right: 30px;
    background: url('./img/extrellas.jpg') no-repeat center center/cover;
}

.services h1 {
    font-family: 'Rajdhani';
    font-size: 60px;
    color: white;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.service {
    max-width: 300px;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 50px;
}

.circle {
    width: 150px;
    height: 150px;
    margin: 20px 70px;
    border: 2px solid #5200FF;
    border-radius: 50%;
    position: relative;
}

.circle::before {
    content: "";
    width: 220px; /* Tamaño del círculo exterior */
    height: 220px;
    border-radius: 50%;
    border: 1px dashed white; /* Borde punteado */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle::after {
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service h2 {
    font-family: 'Rajdhani';
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: left;
    margin-top: 80px;
}

.service p {
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 100;
    line-height: 1.5;
    color: white;
    text-align: left;
}

.plans-button {
    margin-top: -80px;
    text-align: center;
}

.plans-button button {
    background-color: transparent;
    color: white;
    border: 2px solid #5200FF;
    padding: 10px 30px;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plans-button button:hover {
    background-color: #5200FF;
}

.otrosServices h1 {
    text-align: end; /* Mantiene el texto alineado a la derecha en pantallas grandes */
    font-family: 'Rajdhani';
    font-size: 60px;
    color: white;
    margin-right: 80px;
}

/* Estilos para dispositivos medianos (tablets) */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service {
        max-width: 100%;
        margin-top: 20px;
    }

    .circle {
        margin: 0 auto 20px auto;
    }
}

/* Estilos para dispositivos pequeños (celulares) */
@media (max-width: 768px) {
    .services {
        text-align: center; /* Centra todo el contenido en pantallas pequeñas */
    }

    .services h1 {
        font-size: 40px;
    }

    .services-container {
        flex-direction: column; /* Muestra los servicios uno debajo del otro */
        align-items: center;
    }

    .service h2 {
        font-size: 24px;
        text-align: center; /* Centra los títulos de los servicios */
    }

    .service p {
        font-size: 16px;
        text-align: center; /* Centra los párrafos */
    }

    .circle {
        margin: 0 auto 20px auto;
        width: 120px;
        height: 120px;
    }

    .circle::before {
        width: 180px;
        height: 180px;
    }

    .circle::after {
        width: 50px;
        height: 50px;
    }

    .otrosServices h1 {
        text-align: center; /* Centra el texto en pantallas pequeñas */
        font-size: 40px;
        margin-right: 0;
    }

    .plans-button {
        margin-top: 20px;
    }
}

/* Ajustes para pantallas aún más pequeñas (celulares más pequeños) */
@media (max-width: 480px) {
    .services h1 {
        font-size: 30px;
    }

    .service h2 {
        font-size: 20px;
    }

    .service p {
        font-size: 14px;
    }

    .circle {
        width: 100px;
        height: 100px;
    }

    .circle::before {
        width: 160px;
        height: 160px;
    }

    .circle::after {
        width: 40px;
        height: 40px;
    }

    .otrosServices h1 {
        font-size: 30px;
    }
}

/* planetas */

.plans-section {
    width: 100%; /* Ocupa todo el ancho disponible */
    padding: 60px 50px; /* Ajusta el padding para obtener más altura */
    align-items: center;
    justify-content: center;
    background: url('./img/Planets.png') no-repeat center center;
    background-size: contain; /* Hace que la imagen cubra toda la sección */
    box-sizing: border-box; /* Incluye el padding en el cálculo del tamaño del contenedor */
}

.plans-title h1 {
    font-family: 'Rajdhani';
    font-size: 65px;
    color: white;
    text-align: justify;
    transform: translateY(530px) translateX(180px);
}

.plan-card1 {
    position: relative;
    background-color: transparent;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: initial;
    align-items: center;
    width: 30%; /* Ocupa todo el ancho disponible */
    color: white;
    text-align: center;
    min-width: 700px;
    min-height: 180px;
    margin-left: 20%; /* Empuja el elemento hacia la derecha */
    margin-top: -80px;
}

.plan-card2 {
    position: relative;
    background-color: #210a53;
    border-radius: 120px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: initial; /* Si es horizontal, esto puede quedar igual */
    align-items: center; /* Alinea los elementos en la parte superior del eje cruzado (vertical) */
    width: 40%; 
    text-align: center;
    min-width: 700px;
    min-height: 180px;
    color: white;
    margin-left: 40%;
}

.plan-card3 {
    position: relative;
    background-color: transparent;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: initial;
    align-items: center;
    width: 30%; /* Ocupa todo el ancho disponible */
    color: white;
    text-align: center;
    min-width: 700px;
    min-height: 180px;
    margin-left: 65%; /* Empuja el elemento hacia la derecha */
}

.planet-image img {
    background-color: transparent;
    width: 250px; /* Ancho fijo */
    height: 250px; /* Alto fijo */
    margin-right: 20px;
    max-width: 100%;
    object-fit: contain; /* Ajusta la imagen dentro del contenedor sin perder proporción */
    flex-shrink: 0; /* Evita que la imagen se encoja si el espacio es pequeño */
}


.plan-details {
    flex: 1;
    text-align: left; /* Alinea el texto a la izquierda */
}

.plan-details h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.plan-details p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.plan-details ul {
    list-style-type: disc; /* Cambia esto si quieres otro tipo de viñeta */
    padding-left: 20px;    /* Añade espacio a la izquierda para las viñetas */
    margin-bottom: 20px;
    text-align: left;      /* Asegura que el texto esté alineado a la izquierda */
}

.plan-details ul li {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.2em; /* Espacio entre líneas */
}

.plan-details button {
    background-color: transparent;
    color: white;
    border: 2px solid #5200FF;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plan-details button:hover {
    background-color: #5200FF;
}

.promo {
    background: linear-gradient(145deg, rgba(106, 13, 173, 0.8), rgba(34, 34, 34, 0.8));
}

.promo-label {
    background-color: #ffb6c1;
    color: black;
    padding: 5px 10px;
    font-size: 0.8em;
    margin-left: 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .plan-card1, .plan-card2, .plan-card3 {
        display: flex;
        flex-direction: row; /* Coloca el contenido en fila */
        text-align: left; /* Alinea el texto a la izquierda */
        justify-content: space-between; /* Espacia el contenido y la imagen */
        align-items: center; /* Centra verticalmente el contenido e imagen */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        min-width: 300px;
        min-height: 150px;
        padding: 20px;
        margin-top: 20px;
        background-image: none;
    }

    .planet-image img {
        width: 160px;
        height: auto;
        margin-right: 50px; /* Aumenta el espacio entre el contenido y la imagen */
    }

    .plan-details h2 {
        font-size: 1.5em;
    }

    .plan-details p {
        font-size: 1.1em;
    }

    .plan-details ul {
        padding-left: 0;
    }

    .plans-title h1 {
        font-size: 48px;
        text-align: center;
        transform: none; /* Elimina transform para evitar problemas en pantallas pequeñas */
    }

    .plans-section {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    .planet-image img {
        width: 100px;
    }

    .plan-details h2 {
        font-size: 1.3em;
    }

    .plan-details p {
        font-size: 1em;
    }

    .plan-details button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

/* mockup */

.MockupCompleto {
    width: 100%; /* Ocupa todo el ancho disponible */
    padding: 60px 50px; /* Ajusta el padding para obtener más altura */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('./img/texture.png') no-repeat center center;
    background-size: cover; /* Cubre todo el contenedor con la imagen */
    box-sizing: border-box; /* Incluye el padding en el cálculo del tamaño del contenedor */
}


.MockupCompleto h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: normal;
    text-align: center;
}

.MockupCompleto p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    text-align: center;
}

.highlight {
    color: #590dff;
}

.cta-button1 {
    background-color: #5200FF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.cta-button1:hover {
    background-color: #5753e0;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column; /* Ajusta la dirección del contenido en pantallas pequeñas */
}

.phone.front {
    max-width: 600px;
    z-index: 2;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.phone.front {
    animation: floating 3s ease-in-out infinite;
}

/* Responsive Design */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    h1 {
        font-size: 2em;
    }

    .MockupCompleto {
        padding: 40px 30px;
        transform: translateY(150px); /* Ajusta la posición para pantallas más pequeñas */
    }

    .MockupCompleto p {
        font-size: 16px;
        max-width: 600px;
    }

    .cta-button1 {
        font-size: 1em;
        padding: 8px 16px;
    }

    .phone.front {
        max-width: 500px; /* Reduce el tamaño del mockup en tablets */
    }
}

/* Smartphones (480px - 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .MockupCompleto {
        padding: 30px 20px;
        transform: translateY(-50px);
    }

    .MockupCompleto p {
        font-size: 14px;
        max-width: 100%;
        text-align: center;
    }

    .cta-button1 {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .phone.front {
        max-width: 400px; /* Reduce el tamaño del mockup en móviles */
    }
}

/* Smartphones pequeños (hasta 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .MockupCompleto {
        padding: 20px 15px;
        transform: translateY(50px);
    }

    .MockupCompleto p {
        font-size: 12px;
    }

    .cta-button1 {
        font-size: 0.8em;
        padding: 5px 10px;
    }

    .phone.front {
        max-width: 300px; /* Reduce el tamaño del mockup en pantallas pequeñas */
    }
}


/* formulario */

.container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin-top: 60px;
    background: url('./img/formulario.png') no-repeat left center; /* Posiciona la imagen a la izquierda */
    background-size: 50%; /* Ajusta el tamaño del fondo */
}

.content {
    text-align: left;
}

.container2 h1 {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
    align-items: center;
}

.cta-button2 {
    background-color: #5200FF;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    transform: translateX(120px);
    align-items: center;
}

.cta-button2:hover {
    background-color: #5753e0;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.form-container {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
    color: #333;
    position: relative;
    left: -200px; /* Mueve el formulario 20px a la izquierda */
}


.form-container::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -60px;
    bottom: 20px;
    left: 20px;
    background-color: #AC97DB;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

.form-container::after {
    content: '';
    position: absolute;
    top: -50px;  /* Ajusta la distancia */
    right: -120px;
    bottom: 40px;
    left: 60px;
    background-color: #714CC2; /* Cambia el color para diferenciarlo */
    border-radius: 25px; /* Ajusta si necesitas un borde diferente */
    z-index: -2; /* Asegura que esté detrás del ::before */
    opacity: 0.6; /* Diferente opacidad para crear un efecto de capas */
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
    font-weight: bold;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

textarea {
    height: 100px;
    resize: none;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
}

.back-button {
    background-color: white;
    color: #6c63ff;
    padding: 10px 20px;
    border: 2px solid #6c63ff;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button {
    background-color: #6c63ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social img {
    width: 24px;
    margin: 0 10px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 1em; 
}

.footer-logo {
    margin-top: 10px;
    width: 120px;
}

.heart {
    color: red;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        margin-top: 20px;
        background-image: none;
    }

    .container2 h1 {
        font-size: 4em;
        text-align: center;
    }

    .cta-button2 {
        transform: translateX(0);
        font-size: 1em;
        width: 60%;
        padding: 15px 0;
        margin: 0 auto; /* Centra el botón horizontalmente */
        display: block; 
        margin-top: 50px;
    }

    .form-container {
        max-width: 100%;
        padding: 20px;
        margin-top: 100px;
        left: 0px;
    }

    .form-container::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
        background-color: #AC97DB;
        border-radius: 20px;
        z-index: -1;
        opacity: 0.8;
    }
    
    .form-container::after {
        content: '';
        position: absolute;
        top: -40px;  /* Ajusta la distancia */
        right: -40px;
        bottom: -40px;
        left: -40px;
        background-color: #714CC2; /* Cambia el color para diferenciarlo */
        border-radius: 25px; /* Ajusta si necesitas un borde diferente */
        z-index: -2; /* Asegura que esté detrás del ::before */
        opacity: 0.6; /* Diferente opacidad para crear un efecto de capas */
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        text-align: center;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .footer-bottom p {
        font-size: 0.9em;       /* Ajusta el tamaño de fuente para pantallas pequeñas */
        padding: 10px;          /* Añade espaciado si es necesario */
        text-align: center;     /* Mantiene el texto centrado en pantallas pequeñas */
    }

    .footer-logo {
        width: 80px;
        margin: 0 auto;
    }

    .footer-social img {
        width: 20px;
        margin: 0 10px;
    }
}
