/* Variables globales */
:root {
    --primary-color: #00eeff;
    --primary-glow: 0 0 10px rgba(0, 238, 255, 0.7);
    --secondary-color: #ff00aa;
    --secondary-glow: 0 0 10px rgba(255, 0, 170, 0.7);
    --dark-bg: #050505;
    --darker-bg: #030303;
    --dark-content: #0a0a0a;
    --light-text: #e0e0e0;
    --muted-text: #a0a0a0;
    --header-height: 80px;
    --border-color: #333;
    --hover-color: #444;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    --card-bg: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="100%" fill="%23050505"/><path d="M0 50 L100 50" stroke="%23111" stroke-width="0.5"/><path d="M50 0 L50 100" stroke="%23111" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    text-shadow: var(--primary-glow);
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 2rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: var(--primary-glow);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: var(--primary-glow);
}

/* Header y Navegación */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: var(--primary-glow);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.font-size-btn {
    background: transparent;
    color: var(--light-text);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.font-size-btn:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger div {
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light-text);
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--gradient-bg);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="none"/><path d="M0,200 L400,200" stroke="%23111" stroke-width="0.5"/><path d="M200,0 L200,400" stroke="%23111" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background-image: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 238, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 238, 255, 0.6);
    }
}

.hero p {
    font-size: 1.5rem;
    color: var(--muted-text);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-image {
    margin-top: 3rem;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* Estilos de las publicaciones */
.featured-posts {
    padding: 5rem 2rem;
    background-color: var(--dark-content);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-posts h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.post-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.post-card:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color var(--transition-speed) ease;
}

.post-card:hover .post-content h3 {
    color: var(--primary-color);
}

.post-content p {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.arrow {
    margin-left: 6px;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* Admin Frame Section */
.admin-preview {
    padding: 5rem 2rem;
    background-color: var(--darker-bg);
}

.admin-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.admin-preview h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.admin-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-content);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    height: 500px;
    overflow: hidden;
}

.admin-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background: var(--gradient-bg);
    position: relative;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23222"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--muted-text);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: rgba(15, 15, 15, 0.9);
    color: var(--light-text);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 238, 255, 0.3);
}

.btn-subscribe {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 0 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    box-shadow: var(--primary-glow);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--muted-text);
    transition: color var(--transition-speed) ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

address {
    font-style: normal;
    color: var(--muted-text);
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--dark-content);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.social-icons a svg {
    fill: var(--muted-text);
    width: 18px;
    height: 18px;
    transition: fill var(--transition-speed) ease;
}

.social-icons a:hover svg {
    fill: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 100px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-accept, .btn-configure, .btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: #000;
    border: none;
}

.btn-accept:hover {
    box-shadow: var(--primary-glow);
    transform: translateY(-2px);
}

.btn-configure {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--border-color);
}

.btn-configure:hover {
    background-color: var(--hover-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--muted-text);
    border: none;
}

.btn-reject:hover {
    color: var(--light-text);
}

.cookie-link {
    color: var(--muted-text);
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--primary-color);
}

/* Página About */
.about-hero {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--gradient-bg);
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23222"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission {
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    padding-right: 2rem;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.about-values {
    padding: 5rem 2rem;
    background-color: var(--dark-content);
    text-align: center;
}

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

.value-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 238, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    fill: var(--primary-color);
}

.team-section {
    padding: 5rem 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 3rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease;
    text-align: left;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--dark-content);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.team-social a:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.team-social svg {
    fill: var(--muted-text);
    transition: fill var(--transition-speed) ease;
}

.team-social a:hover svg {
    fill: var(--primary-color);
}

/* Página de contacto */
.contact-hero {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--gradient-bg);
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23222"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-form-container, .contact-info-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.contact-form-container h2, .contact-info-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: rgba(15, 15, 15, 0.9);
    color: var(--light-text);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 238, 255, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.btn-submit {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    box-shadow: var(--primary-glow);
    transform: translateY(-2px);
}

.contact-info {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 238, 255, 0.1);
}

.info-icon svg {
    fill: var(--primary-color);
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--muted-text);
    line-height: 1.6;
}

.social-connect h2 {
    margin-bottom: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--dark-content);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    color: var(--light-text);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon.facebook {
    background-color: rgba(24, 119, 242, 0.2);
}

.social-icon.twitter {
    background-color: rgba(29, 161, 242, 0.2);
}

.social-icon.instagram {
    background-color: rgba(193, 53, 132, 0.2);
}

.social-icon.linkedin {
    background-color: rgba(0, 119, 181, 0.2);
}

.social-icon svg {
    fill: var(--primary-color);
}

.faq-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: rgba(0, 238, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition-speed) ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Modal de agradecimiento */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-content);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--muted-text);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.close-modal:hover {
    color: var(--light-text);
}

.modal-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 238, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    fill: var(--primary-color);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.btn-modal-ok {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-modal-ok:hover {
    box-shadow: var(--primary-glow);
    transform: translateY(-2px);
}

/* Estilos para post individual */
.post-header {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--gradient-bg);
    position: relative;
}

.post-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23222"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.post-header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    color: var(--muted-text);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    fill: var(--primary-color);
    width: 16px;
    height: 16px;
}

.post-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-text ul, .post-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-text li {
    margin-bottom: 0.75rem;
}

.post-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--muted-text);
}

.post-share {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-share h3 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background-color: var(--dark-content);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.share-button:hover {
    transform: translateY(-3px);
}

.share-button svg {
    width: 20px;
    height: 20px;
}

.facebook-share:hover {
    background-color: rgba(24, 119, 242, 0.2);
}

.twitter-share:hover {
    background-color: rgba(29, 161, 242, 0.2);
}

.linkedin-share:hover {
    background-color: rgba(0, 119, 181, 0.2);
}

.related-posts {
    padding: 5rem 2rem;
    background-color: var(--dark-content);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Media Queries */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .about-mission {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        padding-right: 0;
    }
    
    .post-meta {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        height: 100vh;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        clip-path: circle(0px at 90% -10%);
        -webkit-clip-path: circle(0px at 90% -10%);
        transition: all var(--transition-speed) ease;
        pointer-events: none;
        z-index: 100;
        top: 0;
        left: 0;
    }
    
    .nav-links.active {
        clip-path: circle(1500px at 90% -10%);
        -webkit-clip-path: circle(1500px at 90% -10%);
        pointer-events: all;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        opacity: 0;
    }
    
    .nav-links.active a {
        opacity: 1;
        transition: opacity var(--transition-speed) ease, color var(--transition-speed) ease;
        transition-delay: 0.2s;
    }
    
    .hamburger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.toggle .line2 {
        opacity: 0;
    }
    
    .hamburger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .post-content-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .post-card {
        margin: 0 0.5rem;
    }
    
    .cookie-banner {
        width: 95%;
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .post-header {
        padding: 4rem 1.5rem;
    }
}
