:root {
    --primary: #6366f1;
    --secondary: #818cf8;
    --dark: #1e293b;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--gradient);
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Preview Container Styles */
.preview-container {
    position: relative;
    padding-top: 2rem;
}

.phone-frame {
    width: 300px;
    height: 600px;
    /* border: 12px solid #333; /* Cambié el borde a un gris oscuro para mejor contraste */
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.preview-content {
    height: 100%;
    background: #f5f5f5;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Añadir estas propiedades para centrar */
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra horizontalmente */
}

.preview-link {
    padding: 1rem;
    background: white;
    color: #333;
    border-radius: 12px;
    width: 90%;
    display: flex; /* Para alinear el icono y el texto */
    align-items: center; /* Centra verticalmente el contenido */
	justify-content: center; /* Centra horizontalmente el contenido */
    gap: 0.75rem; /* Espacio entre el icono y el texto */
    border: 1px solid #e0e0e0;
}

/* Opcional: efecto hover */
.preview-link:hover {
    background: #f8f8f8;
    cursor: pointer;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.social-icon {
    width: 20px; /* Tamaño del icono */
    height: 20px; /* Tamaño del icono */
    object-fit: contain; /* Mantiene la proporción de la imagen */
}




@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features Section Styles */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Pricing Section Styles */
.pricing {
    padding: 4rem 2rem;
    background: var(--light);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--dark);
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Footer Styles */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center; /* Centra el texto horizontalmente */
    width: 100%; /* Asegura que el footer ocupe el ancho completo del contenedor */
    padding: 20px 0; /* Agrega algo de padding para espaciado vertical */
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    font-family: Arial, sans-serif; /* Establece la fuente, ajustable a tus necesidades */
}

.footer-bottom p {
    margin: 0; /* Elimina el margen por defecto de los párrafos para más control */
    font-size: 16px; /* Tamaño de la fuente, ajustable según tus necesidades */
}


.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


.links-list li a img {
    margin-right: 10px; /* Espacio entre imagen y texto */
    width: 24px; /* Tamaño fijo para las imágenes */
    height: 24px; /* Tamaño fijo para las imágenes */
}

.links-list li a:hover {
    background-color: #fff; /* Fondo blanco al pasar el ratón */
    color: #333; /* Texto oscuro al pasar el ratón */
}

/* Responsive */
@media (max-width: 600px) {
    .links-list li a {
        width: 80%; /* Más ancho en pantallas pequeñas */
    }
}
