/* RESET y Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Barra de Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #1877F2;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Ajustar el contenido principal para no quedar detrás de la navbar */
body {
    padding-top: 64px;
}



body {
    background-color: #faf5eb;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Oswald', sans-serif;
}

/* Container Principal */
.rounded-container {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem auto 2rem; /* Aumenté el margen superior a 3rem */
    max-width: 900px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Botones */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    background-color: white;
    color: #333;
    border: 3px solid black;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}

/* Estilos específicos para cada botón */
.btn:hover {
    color: white;
}

/* Facebook */
a[href="recuperar-cuenta-de-facebook.html"]:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

/* WhatsApp */
a[href="recibir-codigo-de-whatsapp.html"]:hover {
    background-color: #7bcf74;
    border-color: #7bcf74;
}

/* FreeFire */
a[href="recuperar-cuenta-de-freefire.html"]:hover {
    background-color: #FF7F00; /* Naranja */
    border-color: #FF7F00;
}

/* Instagram */
a[href="recuperar-cuenta-de-instagram.html"] {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

a[href="recuperar-cuenta-de-instagram.html"]:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    border-color: transparent;
}

/* TikTok */
a[href="recuperar-cuenta-de-tiktok.html"]:hover {
    background: linear-gradient(45deg, #25F4EE, #000000, #FE2C55);
    border-color: transparent;
    color: white;
}

/* Outlook/Hotmail */
a[href="recuperar-cuenta-de-correo.html"]:hover {
    background-color: #0078D4;
    border-color: #0078D4;
}

/* Testimonios */
.testimonials {
    background-color: white;
    padding: 3rem 1rem;
    margin-top: 1rem;
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 500;
    color: #1877F2;
}

.testimonial-source {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: white;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

.faq-btn {
    background-color: transparent;
    color: #666;
    border: 1px solid #666;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.faq-btn:hover {
    background-color: #666;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .rounded-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Estilos del Blog */
.blog-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.blog-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.post-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5; /* Color de fondo mientras carga la imagen */
}

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.post-btn {
    display: inline-block;
    width: auto;
    margin-top: 1rem;
    align-self: flex-start;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.post-date {
    color: #666;
}

.post-category {
    color: #1877F2;
    font-weight: 500;
}

/* Ajustes para la navbar */
body {
    padding-top: 85px; /* Ajusta según la altura de tu navbar */
}

/* Responsive */
@media (max-width: 768px) {
    .blog-container {
        padding: 0 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .post-image {
        height: 150px;
    }
    
    body {
        padding-top: 70px; /* Ajuste para móviles si es necesario */
    }
}

@media (max-width: 480px) {
    .post-content {
        padding: 1rem;
    }
    
    .post-meta {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}