@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f1ea;
    color: #333;
    line-height: 1.6;
}

/* ============== NAVIGATION ============== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #d9534f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d9534f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ============== FOOTER ============== */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 40px 20px;
    margin-top: 3rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #ecf0f1;
}

/* ============== BLOG ARTICLE MAIN STYLES ============== */
main {
    padding-top: 70px;
}

.blog-article {
    max-width: 850px;
    margin: 3rem auto 0 auto;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(180deg, #fff 0%, #fefaf5 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(122, 62, 29, 0.08),
        0 2px 8px rgba(197, 164, 126, 0.06);
    position: relative;
    overflow: hidden;
}

.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(197, 164, 126, 0.08) 0%, transparent 70%);
    z-index: 0;
}

/* HEADER */
.blog-article header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-article h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #d9534f;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #d9534f 0%, #c8453f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    color: #8b7355;
    font-size: 1.05em;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e0d2be;
    display: inline-block;
}

.article-hero {
    max-width: 780px;
    width: 100%;
    height: auto;
    margin: 2.5rem auto 3.5rem auto;
    display: block;
    border-radius: 14px;
    border: 1px solid #e9d8c3;
    box-shadow: 
        0 8px 32px rgba(122, 62, 29, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-hero:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(122, 62, 29, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* TEXTO GENERAL */
.blog-article p, .blog-article li {
    line-height: 1.75;
    margin-bottom: 1.6rem;
    font-size: 1.15em;
    color: #3c2c1a;
    text-align: justify;
}

.blog-article strong {
    color: #d9534f;
    font-weight: 700;
    position: relative;
    padding: 0 2px;
}

.blog-article strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(217, 83, 79, 0.2), transparent);
    border-radius: 2px;
}

/* ENLACES */
.blog-article a {
    color: #d9534f;
    font-weight: 600;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
    background: linear-gradient(120deg, rgba(217, 83, 79, 0.1) 0%, transparent 100%);
}

.blog-article a:hover {
    color: #fff;
    background: linear-gradient(120deg, #d9534f 0%, #c8453f 100%);
    box-shadow: 0 4px 12px rgba(217, 83, 79, 0.25);
}

/* SECCIONES INTRO Y CONCLUSIÓN */
.article-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(248, 240, 224, 0.5) 0%, rgba(245, 239, 230, 0.3) 100%);
    border-radius: 12px;
    border: 1px solid #f0e6d8;
}

.article-conclusion {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e9d8c3;
}

/* BLOCKQUOTE */
blockquote {
    background: linear-gradient(135deg, #f8f5f0 0%, #f2ece2 100%);
    border-left: 5px solid #c5a47e;
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 3rem;
    border-radius: 10px;
    font-style: italic;
    color: #5a4731;
    position: relative;
    font-size: 1.1em;
    box-shadow: 0 4px 16px rgba(197, 164, 126, 0.08);
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    font-size: 4rem;
    color: #c5a47e;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* SECCIÓN DE EVIDENCIAS */
.official-evidence {
    margin: 3rem 0;
}

.official-evidence h2 {
    color: #5a2c0f;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.evidence-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.evidence-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f5f0 0%, #f2ece2 100%);
    border-radius: 10px;
    border: 1px solid #e9d8c3;
    box-shadow: 0 2px 8px rgba(122, 62, 29, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evidence-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 62, 29, 0.12);
}

.evidence-icon {
    font-size: 2rem;
    min-width: 2.5rem;
    display: flex;
    align-items: flex-start;
}

.evidence-item h3 {
    color: #7a3e1d;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.evidence-item p {
    color: #5a4731;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.5;
}

.evidence-disclaimer {
    text-align: center;
    margin-top: 2rem;
    color: #5a2c0f;
    font-size: 1.05em;
    padding: 1.5rem;
    background: rgba(248, 240, 224, 0.5);
    border-radius: 8px;
}

/* MARTILLAZOS - Tarjetas */
.hammer-blows {
    margin: 3.5rem 0;
}

.hammer-blows .hammer {
    margin-bottom: 2.5rem;
    padding: 1.8rem 2rem 1.8rem 3.5rem;
    background: linear-gradient(145deg, #fbf8f3 0%, #f5efe6 100%);
    border-left: 6px solid #c5a47e;
    border-radius: 10px;
    position: relative;
    box-shadow: 
        0 4px 16px rgba(122, 62, 29, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hammer-blows .hammer:hover {
    transform: translateX(5px);
    box-shadow: 
        0 6px 20px rgba(122, 62, 29, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hammer-blows .hammer h2 {
    margin-bottom: 1rem;
    color: #8b5d3d;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* INVITACIÓN */
.invitation {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3e6 100%);
    border: 2px solid #e0c9b0;
    border-left: 6px solid #c5a47e;
    text-align: center;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3.5rem 0;
    font-size: 1.15em;
    color: #5a2c0f;
    box-shadow: 0 6px 24px rgba(197, 164, 126, 0.12);
}

.invitation strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 1rem;
    color: #7a3e1d;
}

/* FIRMA */
.signature {
    text-align: right;
    font-style: italic;
    margin-top: 2.5rem;
    color: #8b7355;
    padding-top: 1.5rem;
    border-top: 1px dashed #d9c9b5;
    font-size: 1.05em;
}

.signature em {
    color: #a05c48;
    font-weight: 500;
}

/* POSTDATA */
.postscript {
    color: #8b5d3d;
    font-size: 1.05em;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(197, 164, 126, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(197, 164, 126, 0.3);
}

/* CTA FINAL */
.article-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(145deg, #fef8f0 0%, #faf0e6 100%);
    border-radius: 16px;
    text-align: center;
    border: 3px solid #c5a47e;
    box-shadow: 
        0 12px 48px rgba(122, 62, 29, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 20px rgba(197, 164, 126, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-subtle 3s ease-in-out infinite;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 164, 126, 0.1) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

.article-cta p {
    margin-bottom: 1.5rem;
    color: #5a2c0f;
    position: relative;
    z-index: 1;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.6;
}

.article-cta .signature {
    color: #a05c48;
    font-style: italic;
    font-size: 1.1em;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9d8c3;
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 
            0 12px 48px rgba(122, 62, 29, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            0 0 20px rgba(197, 164, 126, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(122, 62, 29, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            0 0 30px rgba(197, 164, 126, 0.5);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        gap: 1rem;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        padding: 10px 15px;
        border-radius: 8px;
        transition: background-color 0.3s;
    }

    .nav-links a:hover {
        background-color: rgba(217, 83, 79, 0.1);
    }

    .menu-toggle {
        display: flex;
        cursor: pointer;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .blog-article {
        max-width: 95%;
        margin: 1rem auto;
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }

    .blog-article::before {
        display: none;
    }

    .blog-article h1 {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .article-meta {
        font-size: 0.9em;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .article-hero {
        margin: 1.5rem -1.2rem 2rem -1.2rem;
        width: calc(100% + 2.4rem);
        border-radius: 0;
    }

    .article-intro {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }

    .blog-article p, .blog-article li {
        font-size: 1.05em;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 1.3rem;
    }

    blockquote {
        margin: 2rem 0;
        padding: 1.5rem 1.5rem 1.5rem 2.5rem;
        font-size: 1em;
    }

    blockquote::before {
        left: 0.5rem;
        font-size: 3rem;
    }

    .hammer-blows .hammer {
        margin-bottom: 1.8rem;
        padding: 1.4rem 1.2rem 1.4rem 2.5rem;
    }

    .hammer-blows .hammer::before {
        left: 0.8rem;
        font-size: 1.2rem;
    }

    .hammer-blows .hammer h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .invitation {
        padding: 1.5rem 1.2rem;
        margin: 2rem 0;
        font-size: 1.05em;
    }

    .invitation strong {
        font-size: 1.1em;
        margin-bottom: 0.8rem;
    }

    .article-cta {
        margin-top: 2.5rem;
        padding: 1.8rem 1.2rem;
        border-radius: 12px;
    }

    .article-cta p {
        font-size: 1.05em;
    }

    .article-cta .button {
        padding: 0.9rem 2rem;
        font-size: 1em;
    }

    .signature {
        font-size: 1em;
        margin-top: 2rem;
    }

    .postscript {
        font-size: 1em;
        margin-top: 2rem;
        padding: 1.2rem;
    }

    .official-evidence {
        margin: 2rem 0;
    }

    .official-evidence h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .evidence-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .evidence-item {
        padding: 1.3rem 1rem;
    }

    .evidence-icon {
        font-size: 1.8rem;
        min-width: 2rem;
    }

    .evidence-item h3 {
        font-size: 1.1rem;
    }

    .evidence-item p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 60px;
    }

    .blog-article {
        max-width: 100%;
        padding: 1.2rem 0.8rem;
        margin: 0.5rem 0;
    }

    .blog-article h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .article-meta {
        font-size: 0.85em;
        margin-bottom: 1rem;
    }

    .article-hero {
        margin: 1.2rem -0.8rem 1.5rem -0.8rem;
        width: calc(100% + 1.6rem);
    }

    .article-intro {
        margin-bottom: 1.5rem;
        padding: 1.2rem 0.8rem;
    }

    .blog-article p, .blog-article li {
        font-size: 1em;
        line-height: 1.65;
        margin-bottom: 1.1rem;
    }

    blockquote {
        margin: 1.5rem 0;
        padding: 1.2rem 1rem 1.2rem 2rem;
        font-size: 0.95em;
    }

    blockquote::before {
        left: 0.3rem;
        font-size: 2.5rem;
        top: 0rem;
    }

    .hammer-blows .hammer {
        margin-bottom: 1.5rem;
        padding: 1.2rem 1rem 1.2rem 2.2rem;
    }

    .hammer-blows .hammer::before {
        left: 0.7rem;
        font-size: 1.1rem;
        top: 1.4rem;
    }

    .hammer-blows .hammer h2 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .invitation {
        padding: 1.2rem 1rem;
        margin: 1.5rem 0;
        font-size: 1em;
    }

    .invitation strong {
        font-size: 1.05em;
        margin-bottom: 0.6rem;
    }

    .article-cta {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .article-cta p {
        font-size: 1em;
    }

    .article-cta .button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95em;
    }

    .signature {
        font-size: 0.95em;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .postscript {
        font-size: 0.95em;
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .official-evidence {
        margin: 1.5rem 0;
    }

    .official-evidence h2 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .evidence-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .evidence-item {
        padding: 1.1rem 0.9rem;
    }

    .evidence-icon {
        font-size: 1.6rem;
        min-width: 1.8rem;
    }

    .evidence-item h3 {
        font-size: 1.05rem;
    }

    .evidence-item p {
        font-size: 0.85em;
    }

    .evidence-disclaimer {
        font-size: 0.95em;
        padding: 1.2rem 0.8rem;
    }
}
