/*     */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Arial Black', sans-serif;
    background: #0b1a0e;
    color: white;
    scroll-behavior: smooth;
}

/* FUENTE DISPLAY PRINCIPAL */
.counter-title,
.counter-text,
.social-tag,
.btn-submit,
.text-call {
    font-family: 'Anton', 'Arial Black', sans-serif;
}

/* MENÚ NAVEGACIÓN */
.main-menu {
    position: fixed;
    top: 10px;
    right: 40px; 
    z-index: 10000;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.main-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.main-menu ul li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
    display: inline-block;
    vertical-align: middle;
}

/* SECCIONES GENERALES */
section {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ═══════════════════════════════════════════════
   SECCIÓN 1: HERO  — estilos base (sin overrides)
   ═══════════════════════════════════════════════ */
.section-1 {
    min-height: 100vh;
    background-color: #8fca20;
    background-image: url('assets/fondo1.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    /* Flex ya viene del selector "section" global */
    align-items: flex-start;
    overflow: visible;
    z-index: 5;
    padding-bottom: 100px;
}

/* Bloque centrado que contiene todo el contenido */
.content {
    position: relative;
    z-index: 10;
    margin-top: 490px;
    width: 90%;
    max-width: 560px;
    /* flex-column: cada hijo ocupa todo el ancho disponible */
    display: flex;
    flex-direction: column;
    align-items: stretch;   /* ← clave: hijos se estiran al 100% del ancho */
}

/* Logo Guardianes Verdes */
.logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.logo-gv {
    width: 100%;
    max-width: 460px;
    height: auto;
}

/* Bloque de texto: hereda el 100% del .content */
.hero-text-block {
    width: 100%;
}

/* Tarjeta / card de contenido */
.cta-anchor {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 24px 32px;
    background: rgba(0, 45, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 40, 0, 0.15);
}

/* Logo partido Verde dentro de la card */
.logo-verde-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.logo-verde {
    width: 80px;
    height: auto;
}

/* Títulos hero */
.hero-titulo {
    font-family: 'Anton', 'Arial Black', sans-serif;
    font-size: 1.6rem;
    color: #1a4a00;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 20px 0 8px;
    line-height: 1.3;
}

.hero-titulo:first-of-type {
    margin-top: 0;
}

/* Párrafos hero */
.hero-texto {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    text-align: center;
    margin: 0 0 16px;
}

/* ── Carrusel de temas ── */
.temas-block {
    width: 100%;
    margin-top: 4px;
}

.temas-slider {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(
        to right, transparent 0%, black 14%, black 86%, transparent 100%
    );
    mask-image: linear-gradient(
        to right, transparent 0%, black 14%, black 86%, transparent 100%
    );
}

.temas-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: temasScroll 32s linear infinite;
    will-change: transform;
}

.temas-track:hover { animation-play-state: paused; }

@keyframes temasScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tema-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    border-radius: 14px;
    padding: 10px 14px;
    min-width: 100px;
    max-width: 120px;
    cursor: default;
    transition: background 0.2s;
    flex-shrink: 0;
}

.tema-item:hover { background: rgba(255, 255, 255, 0.32); }

.tema-item svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    flex-shrink: 0;
}

.tema-item span {
    font-size: 0.68rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

/* ── Flecha indicativa ── */
.flecha-indicativa {
    position: absolute;
    width: 100px;
    right: 40%;
    bottom: -150px;
    transform: rotate(-8deg);
    z-index: 20;
    animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes bounceArrow {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%       { transform: rotate(-8deg) translateY(8px); }
}

/* ── Hojas decorativas ── */
.hoja {
    position: absolute;
    z-index: 15;
    pointer-events: none;
}

.izq { width: 280px; left: -20px; bottom: -120px; animation: vientoIzq 6s ease-in-out infinite; }
.der { width: 280px; right: -20px; top: calc(75vh - 50px); animation: vientoDer 7s ease-in-out infinite; }

/* ── Animaciones de viento ── */
@keyframes vientoIzq {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    30%       { transform: rotate(2deg) translate(4px, -3px); }
    60%       { transform: rotate(-1.5deg) translate(-3px, 2px); }
}

@keyframes vientoDer {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    35%       { transform: rotate(-2deg) translate(-4px, -2px); }
    65%       { transform: rotate(1deg) translate(3px, 3px); }
}

@keyframes vientoTransicion {
    0%, 100% { transform: rotate(15deg) translate(0, 0); }
    40%       { transform: rotate(17deg) translate(3px, -4px); }
    70%       { transform: rotate(13.5deg) translate(-2px, 2px); }
}

/*    SECCIÓN 2: CONTADOR — fondo recreado en CSS para máxima nitidez */
.section-2 {
    min-height: 55.2vw;
    background-color: #001900;
    background-image:
        linear-gradient(#3db200, #3db200),
        linear-gradient(#3db200, #3db200);
    background-size: 100% 10px, 100% 10px;
    background-position: top, bottom;
    background-repeat: no-repeat;
    flex-direction: column;
    padding: 100px 0 80px 0;
    z-index: 1;
    overflow: visible;
}

/* Flecha izquierda */
.section-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14vw;
    height: 24.4vw;
    background: #3db200;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    pointer-events: none;
}

/* Flecha derecha */
.section-2::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14vw;
    height: 24.4vw;
    background: #3db200;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    pointer-events: none;
}

.counter-title { 
    font-size: 4rem; 
    color: #8fca20; 
    margin-bottom: 30px;
    text-align: center;
}

.counter-text { 
    font-size: 4rem; 
    color: #ffffff;
    font-weight: 900; 
    letter-spacing: 8px; 
    margin-top: 40px;
    text-align: center;
}

.digits { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 35px; 
    margin: 60px 0; 
    width: 100%;
    padding: 0 20px; 
}

.flip-card {
    width: 180px; 
    max-width: 22vw; 
    height: 250px; 
    max-height: 35vh; 
    display: flex; 
    flex-direction: column;
}

.flip-card .top, .flip-card .bottom {
    font-size: clamp(3rem, 10vw, 8rem); 
    background: #8fca20; 
    color: #ffffff; 
    height: 50%;
    display: flex; 
    justify-content: center; 
    overflow: hidden; 
    border: 6px solid #001f00; 
    line-height: 0;
}

.flip-card .top { align-items: flex-end; border-radius: 10px 10px 0 0; }
.flip-card .bottom { align-items: flex-start; border-radius: 0 0 10px 10px; border-top: none; }

/* Animación squeeze — nunca corta el número */
@keyframes squeeze {
    0%   { transform: scaleY(1); }
    40%  { transform: scaleY(0.04); }
    60%  { transform: scaleY(0.04); }
    100% { transform: scaleY(1); }
}

.flip-card.tick {
    animation: squeeze 0.22s ease-in-out both;
    transform-origin: center center;
}

.hoja-transicion {
    position: absolute;
    width: 220px;
    right: -30px;
    bottom: -110px; 
    z-index: 100;
    pointer-events: none;
    transform: rotate(15deg);
    animation: vientoTransicion 8s ease-in-out infinite;
}

/* Decorativo contador — oculto en desktop */
.counter-deco { display: none; }

/* ANIMACIÓN FLOTANTE */
@keyframes flotar {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40%       { transform: translateY(-14px) rotate(1deg); }
    70%       { transform: translateY(-6px) rotate(-0.5deg); }
}

/* SECCIÓN 3: FORMULARIO Y REDES */
.section-3 {
    min-height: 110vh;
    flex-direction: column;
    padding: 100px 20px 80px;
    /*
      Capas de fondo (de arriba a abajo):
      1. Imagen centrada, sin recortar (contain)
      2. Franja izquierda: degradado desde verde-ciudad al borde
      3. Franja derecha: degradado desde verde-lima (blob) al borde
      4. Color base: verde ciudad que rellena el resto
    */
    background-color: #1c6520;
    background-image:
        url('assets/fondo3-1.webp'),
        linear-gradient(to right,  #0f4a14 0%, #1c6520 18%, transparent 38%),
        linear-gradient(to left,   #4a9e10 0%, #2a7a18 18%, transparent 38%);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center center, left center, right center;
    background-size: contain, 100% 100%, 100% 100%;
    overflow: hidden;
}

/* Blob lima — lado derecho, al nivel del blob de la imagen */
.section-3::before {
    content: '';
    position: absolute;
    top: 12%;
    right: -4vw;
    width: 22vw;
    height: 40vw;
    background: #8fca20;
    border-radius: 62% 38% 54% 46% / 55% 48% 52% 45%;
    opacity: 0.40;
    z-index: 0;
    pointer-events: none;
}

/* Mancha verde oscura — lado izquierdo, simula masa de árboles/edificios */
.section-3::after {
    content: '';
    position: absolute;
    top: 25%;
    left: -4vw;
    width: 20vw;
    height: 36vw;
    background: #0b3812;
    border-radius: 50% 60% 42% 58% / 58% 44% 56% 42%;
    opacity: 0.60;
    z-index: 0;
    pointer-events: none;
}

/* ─── PODIO FORM OVERRIDES ─────────────────────────────
   Selectores oficiales según documentación de Podio.
   Aplica si el script inyecta inline (sin iframe).
   ─────────────────────────────────────────────────────── */

/* Ocultar branding "Podio - CRM done right" */
.podio-webform-container { display: none !important; }

/* Formulario raíz */
.notebook-container form.webforms,
.notebook-container #webform {
    width: 100%;
}

/* Título del formulario (h1 de Podio) */
.notebook-container form.webforms h1 {
    font-family: 'Anton', 'Arial Black', sans-serif;
    font-size: 1.4rem;
    color: #0b1a0e;
    padding-bottom: 10px;
    border-bottom: 3px solid #8fca20;
    margin-bottom: 24px;
}

/* Contenedor de cada campo */
.notebook-container .webforms__field {
    margin-bottom: 22px;
}

/* Labels */
.notebook-container label.webforms__label {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

/* Inputs, selects y textareas — clase .form-control de Podio */
.notebook-container .form-control {
    width: 100%;
    padding: 12px 6px;
    border: none !important;
    border-bottom: 2px solid rgba(0,0,0,0.12) !important;
    border-radius: 0 !important;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: transparent !important;
    color: #333;
    outline: none;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.25s;
}

.notebook-container .form-control:focus {
    border-bottom-color: #8fca20 !important;
    box-shadow: none !important;
    background: rgba(143,202,32,0.04) !important;
}

/* Botón de envío — .btn.btn-primary de Podio */
.notebook-container .btn.btn-primary,
.notebook-container button[type="submit"] {
    width: 100%;
    background: #8fca20 !important;
    color: #fff !important;
    padding: 16px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Anton', 'Arial Black', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 24px;
    display: block;
}

.notebook-container .btn.btn-primary:hover,
.notebook-container button[type="submit"]:hover {
    background: #7ab31b !important;
    transform: translateY(-2px);
}

/* Texto de ayuda */
.notebook-container .help-block {
    font-size: 0.82rem;
    color: #888;
}

/* Mensajes de error */
.notebook-container .has-error .help-block,
.notebook-container .has-error .control-label {
    color: #c0392b;
}

/* Ocultar campo "Datos adjuntos" — selector exacto de Podio */
.notebook-container .file-field,
.notebook-container .file-field.form-group,
.notebook-container input[type="file"],
.notebook-container .field-add-another,
.notebook-container .webforms__field:has(.file-field),
.notebook-container .webforms__field:has(input[type="file"]) {
    display: none !important;
}

/* ─── LAYOUT COMPACTO UNA COLUMNA ───────────────────── */
.notebook-container .webforms__field {
    margin-bottom: 10px;
}

.notebook-container label.webforms__label {
    font-size: 0.82rem;
    margin-bottom: 3px;
}

.notebook-container .form-control {
    padding: 7px 5px !important;
    font-size: 0.88rem;
}

.notebook-container .webforms__submit-box {
    margin-top: 10px;
}

.notebook-container .btn.btn-primary,
.notebook-container button[type="submit"] {
    padding: 12px 20px !important;
    font-size: 1rem;
    margin-top: 6px;
}

/* Contenedor compacto */
.notebook-container {
    padding: 22px 28px;
    max-width: 480px;
}

/* Mensaje de éxito post-envío */
.notebook-container .podio-webform .success,
.notebook-container .podio-webform .confirmation {
    text-align: center;
    font-size: 1.1rem;
    color: #2e7d32;
    padding: 20px 0;
}

/* Título "Contacto" del formulario */
.form-contacto-title {
    font-family: 'Anton', 'Arial Black', sans-serif;
    font-size: 1.6rem;
    color: #0b1a0e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #8fca20;
    text-align: left;
}

/* Imagen del título "Acompañamos tu denuncia" */
.header-logo-denuncia {
    width: 100%;
    max-width: 600px;
    margin-bottom: 50px;
    z-index: 10;
}

/* Contenedor del formulario */
.notebook-container {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    padding: 40px 48px;
    border-radius: 16px;
    width: 90%;
    max-width: 580px;
    z-index: 10;
}

/* Estilos de los inputs */
.input-group { 
    margin-bottom: 32px; 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
}

.input-group label { 
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem; 
    font-weight: 900; 
    margin-bottom: 10px; 
    color: #444; 
}

.input-group input, .input-group select, .input-group textarea {
    padding: 15px 5px; 
    border: none; 
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 0; 
    font-size: 1.1rem; 
    font-family: 'Arial', sans-serif;
    background: transparent;
    color: #333;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: #8fca20;
    background: #fff;
}

/* Reemplazo de .input-row por la nueva .form-row de HTML */
.form-row { 
    display: flex; 
    gap: 15px; 
}
.form-row .input-group { 
    flex: 1; 
}

.btn-submit {
    width: 100%; 
    background: #8fca20; 
    color: white; 
    padding: 18px;
    border: none; 
    border-radius: 50px; 
    font-size: 1.3rem; 
    font-weight: bold;
    cursor: pointer; 
    transition: 0.3s;
    margin-top: 10px;
}
.btn-submit:hover { 
    background: #7ab31b; 
    transform: translateY(-2px);
}

/* Estilos ajustados a las nuevas clases de Redes Sociales */
.social-footer {
    margin-top: 60px;
    text-align: center;
    z-index: 10;
}

.social-tag {
    font-size: 3.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .8);
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    padding: 7px;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: scale(1.12);
}

.social-icons img {
    width: 65px;
    display: block;
}

/* ============================================
   RESPONSIVO — TABLET LANDSCAPE / iPad Pro
   ============================================ */
@media (max-width: 1024px) {
    /* Nav */
    .main-menu { top: 15px; right: 20px; padding: 8px 18px; }

    /* Hero — tablet landscape */
    .content { margin-top: 520px; width: 88%; max-width: 520px; }
    .logo-gv  { max-width: 380px; }
    .hero-titulo { font-size: 1.45rem; }
    .flecha-indicativa { width: 85px; right: 35%; }
    .izq { width: 220px; }
    .der { width: 220px; }

    /* Contador */
    .counter-title { font-size: 3rem; }
    .counter-text  { font-size: 3rem; letter-spacing: 5px; }
    .flip-card { width: 140px; max-width: 20vw; height: 200px; }
    .digits { gap: 25px; }
    .hoja-transicion { width: 180px; }

    /* Sección 3 */
    .section-3 { padding: 140px 30px 70px; }
    .header-logo-denuncia { max-width: 500px; }
    .notebook-container { max-width: 540px; padding: 36px 40px; }
}

/* ============================================
   RESPONSIVO — TABLET PORTRAIT / iPad / 768px
   ============================================ */
@media (max-width: 768px) {
    /* Nav */
    .main-menu { top: 0; right: 0; width: 100%; border-radius: 0; padding: 12px 16px; }
    .main-menu ul { justify-content: center; gap: 4px; }
    .main-menu ul li a { font-size: 0.78rem; }

    .section-3 {
        background-image: url('assets/fondo3-1.webp');
        background-size: cover;
        background-position: center top;
    }

    /* Ocultar flechas CSS de section-2 en móvil */
    .section-2::before,
    .section-2::after { display: none; }

    /* Ocultar elementos flotantes decorativos */
    .izq,
    .der,
    .hoja-transicion,
    .flecha-indicativa { display: none; }

    /* Hero — tablet portrait / móvil */
    .section-1 {
        background-image: url('assets/fondo1-movil.webp');
        padding-bottom: 120px;
    }
    .content { margin-top: 430px; width: 92%; max-width: 420px; }
    .logo-gv { max-width: 280px; }
    .logo-verde { width: 64px; }
    .hero-titulo { font-size: 1.2rem; margin: 14px 0 6px; }
    .hero-texto { font-size: 0.93rem; }
    .cta-anchor { padding: 20px 18px 24px; border-radius: 16px; }
    .tema-item { min-width: 88px; max-width: 105px; padding: 8px 10px; }
    .tema-item svg { width: 26px; height: 26px; }
    .tema-item span { font-size: 0.62rem; }

    /* Contador — sección compacta, 4 dígitos en una línea */
    .section-2 { min-height: auto; padding: 52px 20px 44px; }
    .counter-title { font-size: 2rem; text-align: center; margin-bottom: 0; }
    .counter-text  { font-size: 2rem; letter-spacing: 3px; text-align: center; margin-top: 20px; }
    .digits { flex-wrap: nowrap; gap: 10px; justify-content: center; margin: 28px 0; padding: 0 10px; }
    .flip-card { width: calc(22vw - 8px); max-width: 100px; min-width: 60px; height: 130px; flex-shrink: 0; }
    .flip-card .top, .flip-card .bottom { font-size: clamp(2rem, 7.5vw, 5rem); }

    /* Decorativo chevrons */
    .counter-deco {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-top: 22px;
    }
    .counter-deco span {
        display: block;
        width: 0; height: 0;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
        border-left: 18px solid #8fca20;
        opacity: 0.85;
    }

    /* Sección 3 — centrado */
    .section-3 { padding: 110px 16px 60px; align-items: center; }
    .section-3::before, .section-3::after { display: none; }
    .header-logo-denuncia { max-width: 85%; margin: 0 auto 30px; display: block; }
    .notebook-container { padding: 28px 24px; width: 95%; margin: 0 auto; }
    .form-row { flex-direction: column; gap: 0; }
    .input-group label { font-size: 1.2rem; }
    .form-contacto-title { font-size: 1.4rem; }
    .social-footer { margin-top: 40px; text-align: center; }
    .social-tag { font-size: 1.2rem; }
    .social-icons { justify-content: center; }
    .social-icons img { width: 38px; }
    .social-icons a {
        background: rgba(255, 255, 255, .9);
    }
}

/* ============================================
   RESPONSIVO — MÓVIL / 480px
   ============================================ */
@media (max-width: 480px) {
    /* Nav */
    .main-menu ul li a { font-size: 0.7rem; }
    .main-menu ul li:not(:last-child)::after { margin: 0 8px; }

    /* Hero — móvil pequeño */
    .content { margin-top: 360px; width: 94%; }
    .logo-gv { max-width: 210px; }
    .logo-verde { width: 52px; }
    .hero-titulo { font-size: 1.05rem; margin: 12px 0 5px; letter-spacing: 0.2px; }
    .hero-texto { font-size: 0.86rem; line-height: 1.6; }
    .cta-anchor { padding: 16px 14px 20px; border-radius: 14px; }
    .tema-item { min-width: 80px; max-width: 95px; padding: 7px 8px; }
    .tema-item svg { width: 22px; height: 22px; }
    .tema-item span { font-size: 0.58rem; }

    /* Contador — compacto */
    .section-2 { padding: 40px 16px 36px; }
    .counter-title { font-size: 1.35rem; }
    .counter-text  { font-size: 1.35rem; letter-spacing: 2px; margin-top: 16px; }
    .digits { flex-wrap: nowrap; gap: 6px; margin: 20px 0; padding: 0 8px; }
    .flip-card { width: calc(23vw - 6px); min-width: 56px; height: 88px; flex-shrink: 0; }
    .flip-card .top, .flip-card .bottom { font-size: clamp(1.8rem, 7vw, 4rem); border-width: 4px; }
    .counter-deco { gap: 10px; margin-top: 16px; }
    .counter-deco span { border-top-width: 8px; border-bottom-width: 8px; border-left-width: 13px; }

    /* Sección 3 */
    .section-3 { padding: 80px 12px 50px; }
    .header-logo-denuncia { max-width: 90%; }
    .notebook-container { padding: 22px 16px; width: 98%; border-radius: 12px; }
    .form-contacto-title { font-size: 1.1rem; }
    .input-group { margin-bottom: 20px; }
    .input-group label { font-size: 1rem; }
    .input-group input,
    .input-group select,
    .input-group textarea { font-size: 1rem; padding: 12px 4px; }
    .btn-submit { font-size: 1.05rem; padding: 14px; }
    .social-tag { font-size: 1rem; }
    .social-icons { gap: 12px; }
    .social-icons img { width: 30px; }
}