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

/* Variables */
:root {
    --green-dark: #1a4028;
    --green-medium: #2e6b4f;
    --green-light: #4a9b5a;
    --yellow: #f5c842;
    --yellow-lime: #8bc53f;
    --white: #ffffff;
    --gray-light: #f5f5f0;
    --gray: #666666;
    --text-dark: #1a4028;
    --beige: #f5f0e6;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #1e3932;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: #1e3932;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--yellow-lime);
}

.nav-link-login {
    color: var(--yellow-lime);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-login:hover {
    color: var(--yellow);
}

.nav-link-login svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Hamburger Menu - oculto en desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    margin-top: 64px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: right center;
}

.hero-cta {
    text-align: center;
    padding: 0;
    margin-top: -100px;
    background: var(--white);
    position: relative;
    z-index: 5;
}

/* Hero Split Section */
.hero-split {
    margin-top: 64px;
    width: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    background: #1e3932;
}

/* Para pantallas grandes: altura basada en la imagen de referencia */
@media (min-width: 1200px) {
    .hero-split {
        min-height: auto;
        aspect-ratio: 8 / 3;
    }
}

.hero-split-left {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 60px 100px;
    min-height: 500px;
    width: 45%;
    background: #1e3932;
}

.hero-split-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background: url('../img/franja-verde-esquina.png') no-repeat top left;
    background-size: contain;
    z-index: 0;
    opacity: 0.6;
}

.hero-split-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: auto;
    max-width: 494px;
    height: auto;
    margin-bottom: 8px;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero-download-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-download-left {
    display: flex;
    flex-direction: column;
}

.download-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-store-btn {
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border-radius: 8px;
}

.hero-store-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-store-btn img {
    height: 45px;
    width: auto;
    display: block;
}

.hero-download-right {
    flex-shrink: 0;
}

.download-icon {
    width: 200px;
    height: auto;
}

.hero-register-btn {
    display: inline-block;
    background: #f5c842;
    color: #1e3932;
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.hero-register-btn:hover {
    background: #e5b832;
    transform: scale(1.02);
}

.hero-split-right {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

@media (max-width: 992px) {
    .hero-split {
        min-height: 380px;
    }

    .hero-split-left {
        padding: 30px 20px 30px 60px;
        min-height: 380px;
        width: 45%;
    }

    .hero-split-right {
        width: 55%;
    }

    .hero-split-left::before {
        width: 250px;
        height: 250px;
    }

    .hero-logo {
        width: 260px;
        max-width: 100%;
    }

    .hero-split-content {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-split {
        min-height: 500px;
        flex-direction: column;
        position: relative;
    }

    .hero-split-left {
        padding: 60px 20px;
        justify-content: center;
        min-height: 500px;
        width: 100%;
        background: rgba(30, 57, 50, 0.80);
        z-index: 2;
    }

    .hero-split-left::before {
        display: none;
    }

    .hero-split-right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-split-image {
        opacity: 0.5;
        object-position: center center;
    }

    .hero-logo {
        width: 300px;
        max-width: 85%;
    }

    .hero-split-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-download-box {
        justify-content: center;
    }
}

/* App Banner Section */
.app-banner {
    width: 100%;
    background: url('../img/banner-app/fondo-descarga-la-app.png') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.app-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.app-banner-phone {
    /* Espacio para la imagen del teléfono (visible en el fondo parallax) */
}

.app-banner-phone img {
    display: none;
}

.app-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
}

.app-banner-logo {
    width: 140px;
    height: auto;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.app-download-icon {
    width: auto;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.store-btn {
    display: inline-block;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn img {
    height: 40px;
    width: auto;
}

.app-banner-slogan {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    flex-shrink: 0;
}

/* App Banner Responsive */
@media (max-width: 1024px) {
    .app-banner-container {
        min-height: 480px;
    }

    .app-banner-content {
        padding: 30px 25px;
    }

    .app-banner-logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .app-download-icon {
        max-width: 170px;
        margin-bottom: 15px;
    }

    .store-btn img {
        height: 36px;
    }
}

@media (max-width: 768px) {
    .app-banner {
        background-attachment: scroll;
        background-position: center;
    }

    .app-banner-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .app-banner-phone {
        display: none;
    }

    .app-banner-content {
        padding: 40px 20px;
        min-height: 400px;
    }

    .app-banner-logo {
        width: 110px;
        margin-bottom: 15px;
    }

    .app-download-icon {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .store-btn {
        margin-bottom: 20px;
    }

    .store-btn img {
        height: 34px;
    }

    .app-banner-slogan {
        font-size: 12px;
    }
}

/* Tagline Section */
.tagline {
    padding: 0 0 10px;
    background: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.btn-platform {
    display: inline-block;
    background: var(--yellow-lime);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-bottom: 30px;
}

.btn-platform:hover {
    background: #7ab535;
}

.tagline-img {
    max-width: 700px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.smile-icon {
    width: 45px;
    height: auto;
    display: block;
    margin: 10px auto 0;
}

/* Description Section */
.description {
    padding: 5px 0 20px;
    background: var(--white);
    text-align: center;
}

.description-title {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 30px 0 40px;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    padding: 20px 25px 30px;
    text-align: center;
}

.feature-icon {
    width: 40px;
    height: auto;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.sinigan-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
}

.sinigan-description strong {
    color: var(--green-light);
}

/* Bot flotante */
.bot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s;
}

.bot-container:hover {
    transform: scale(1.05);
}

.bot-img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* Manual Section */
.manual-section {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.manual-content {
    position: relative;
    height: 100%;
}

.manual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/manual-bg-new.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.manual-image img {
    display: none;
}

.manual-card {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.manual-download {
    display: block;
    transition: transform 0.3s;
}

.manual-download:hover {
    transform: scale(1.03);
}

.manual-download img {
    width: 320px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: var(--white);
    position: relative;
}

.faq-content {
    display: flex;
    align-items: center;
}

.faq-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.faq-image img {
    width: 100%;
    height: auto;
}

.faq-text {
    flex: 1;
    padding: 40px 60px;
    text-align: center;
}

.faq-icon {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.faq-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    display: block;
    padding: 15px 10px;
    font-size: 15px;
    color: var(--gray);
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: color 0.3s;
}

.faq-item:hover {
    color: var(--green-dark);
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.faq-accordion-item {
    border-bottom: 1px solid #ddd;
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    font-size: 15px;
    color: var(--gray);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-accordion-header:hover {
    color: var(--green-dark);
}

.faq-accordion-header span {
    flex: 1;
}

.faq-accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-item.active .faq-accordion-header {
    color: var(--green-dark);
    font-weight: 500;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 300px;
}

.faq-accordion-content p {
    padding: 0 10px 18px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section con video y franjas */
.cta-section {
    position: relative;
    overflow: hidden;
    background-image: url('../img/franjas-footer.png');
    background-size: 100% auto;
    background-position: center bottom -200px;
    background-repeat: no-repeat;
    padding: 50px 0 0;
    min-height: 900px;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.video-header {
    margin-bottom: 30px;
}

.video-header h3 {
    font-size: 36px;
    color: var(--green-dark);
    font-weight: 500;
    margin-bottom: 5px;
    font-style: italic;
}

.video-header p {
    font-size: 28px;
    color: var(--green-dark);
    font-weight: 400;
}

.video-header .highlight {
    color: var(--yellow-lime);
    font-weight: 600;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-container iframe {
    width: 700px;
    max-width: 90vw;
    height: 394px;
    border-radius: 20px;
}

.video-placeholder {
    width: 700px;
    max-width: 90vw;
    height: 350px;
    background: #1e3932;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--yellow-lime);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
    background: #9ad650;
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    margin-left: 4px;
}

.cta-vaca {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.cta-vaca img {
    height: 50px;
    width: auto;
}


/* Footer */
.footer {
    position: relative;
}

.footer-main {
    background: #1e3932;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logos {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manual-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
    }

    .manual-content {
        flex-direction: column;
    }

    .faq-content {
        flex-direction: column;
    }

    .faq-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .faq-text {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .header {
        background: #1e3932;
    }

    .header-container {
        padding: 0 20px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1e3932;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link,
    .nav-menu .nav-link-login {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 15px;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        margin-top: 64px;
    }

    .hero-cta {
        padding: 20px 15px;
    }

    .cta-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .btn-platform {
        padding: 12px 25px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tagline-img {
        max-width: 90%;
    }

    .description-title {
        font-size: 18px;
        padding: 0 10px;
    }

    .faq-text h2 {
        font-size: 24px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 20px;
    }

    .bot-img {
        width: 200px;
    }

    .footer-logos {
        height: 40px;
    }

    .footer-decoration {
        height: 60px;
    }

    .footer-stripe {
        width: 100px;
    }

    .stripe-yellow {
        left: calc(5% + 60px);
    }

    .manual-download img {
        width: 280px;
    }
}

/* ========================================
   PÁGINA DE REGISTRO - ESTILOS
   ======================================== */

.header-solid {
    background: #1e3932;
}

/* Hero de Registro */
.registro-hero {
    background: linear-gradient(135deg, #1e5631 0%, #2e7d4a 50%, #1e5631 100%);
    padding: 120px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registro-decoracion-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circulo-amarillo {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow);
}

.circulo-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    opacity: 0.8;
}

.circulo-2 {
    width: 120px;
    height: 120px;
    top: 80px;
    right: 100px;
    opacity: 0.6;
}

.registro-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.registro-logo {
    margin-bottom: 30px;
}

.registro-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 10px;
}

.registro-logo-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.registro-titulo {
    color: var(--white);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.registro-titulo span {
    color: var(--yellow);
    font-weight: 700;
    font-size: 52px;
}

.registro-subtitulo {
    background: var(--yellow);
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 30px;
    display: inline-block;
    line-height: 1.4;
}

/* Instrucciones de Plataforma */
.registro-instrucciones {
    padding: 50px 20px;
    background: var(--white);
}

.instrucciones-header {
    text-align: center;
    margin-bottom: 25px;
}

.instrucciones-header span {
    background: var(--yellow-lime);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    display: inline-block;
}

.instrucciones-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.instrucciones-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.instrucciones-content a {
    color: var(--green-medium);
    text-decoration: none;
    font-weight: 500;
}

.instrucciones-content a:hover {
    text-decoration: underline;
}

.instrucciones-nota {
    font-size: 14px !important;
    font-weight: 500;
    color: var(--text-dark) !important;
}

/* Pasos de Registro */
.registro-pasos {
    padding: 30px 20px 50px;
    background: var(--gray-light);
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.paso-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.paso-numero {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow-lime);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 15px;
}

.paso-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.paso-icono {
    width: 60px;
    height: 60px;
    min-width: 60px;
    color: var(--green-dark);
}

.paso-icono svg {
    width: 100%;
    height: 100%;
}

.paso-contenido {
    flex: 1;
    text-align: center;
}

.paso-card h3 {
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.paso-card p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}

.paso-card p strong {
    color: var(--text-dark);
}

/* Paso final centrado */
.paso-final {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.paso-card-final {
    max-width: 400px;
    width: 100%;
}

/* Registro Exitoso */
.registro-exitoso {
    background: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.registro-exitoso h2 {
    color: var(--green-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.exitoso-mensaje {
    background: var(--yellow-lime);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 25px;
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-ingresar {
    display: inline-block;
    background: var(--green-dark);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.btn-ingresar:hover {
    background: var(--green-medium);
    transform: scale(1.05);
}

/* Footer de Registro */
.registro-footer-content {
    justify-content: space-between !important;
}

.footer-url {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

/* Responsive para Registro */
@media (max-width: 768px) {
    .registro-hero {
        padding: 100px 15px 40px;
    }

    .registro-titulo {
        font-size: 28px;
    }

    .registro-titulo span {
        font-size: 36px;
    }

    .registro-subtitulo {
        font-size: 14px;
        padding: 12px 25px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
    }

    .paso-card {
        padding: 25px 20px;
    }

    .paso-inner {
        gap: 15px;
    }

    .paso-icono {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .registro-exitoso h2 {
        font-size: 28px;
    }

    .circulo-1 {
        width: 120px;
        height: 120px;
        top: -30px;
        right: -30px;
    }

    .circulo-2 {
        width: 80px;
        height: 80px;
        top: 50px;
        right: 60px;
    }

    .registro-logo-img {
        height: 60px;
    }

    .footer-url {
        font-size: 12px;
    }
}

/* ========================================
   PÁGINA DE MANUALES - ESTILOS
   ======================================== */

.manuales-page {
    min-height: 100vh;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.decoration-left {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 80px;
    z-index: 1;
}

.decoration-left img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.decoration-right {
    position: fixed;
    right: 0;
    bottom: 0;
    height: 60%;
    width: 80px;
    z-index: 1;
}

.decoration-right img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.manuales-header {
    background: #1e3932;
}

.manuales-content {
    position: relative;
    z-index: 5;
    padding: 100px 100px 60px;
    text-align: center;
}

.manuales-title-section {
    margin-bottom: 40px;
}

.manuales-tagline {
    font-size: 20px;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.manuales-title-img {
    max-width: 600px;
    width: 80%;
    height: auto;
    margin-bottom: 15px;
}

.manuales-smile {
    width: 50px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.manuales-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.manuales-intro {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.manuales-subtitle-img {
    max-width: 400px;
    width: 60%;
    height: auto;
    margin-bottom: 50px;
}

.manuales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.manual-card-item {
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.manual-card-item:hover {
    transform: translateY(-8px);
}

.manual-card-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.manuales-footer-logo {
    margin-top: 40px;
}

.manuales-footer-logo img {
    height: 60px;
    width: auto;
}

.footer-subtitle {
    font-size: 11px;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .manuales-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 750px;
    }
}

@media (max-width: 900px) {
    .manuales-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .decoration-left,
    .decoration-right {
        display: none;
    }

    .manuales-content {
        padding: 80px 20px 40px;
    }

    .manuales-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .manuales-title-img {
        width: 90%;
    }

    .manuales-subtitle-img {
        width: 70%;
    }
}

/* ========================================
   PÁGINA PRIMEROS PASOS - ESTILOS
   ======================================== */

.primeros-pasos-page {
    min-height: 100vh;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.primeros-pasos-header {
    background: #1e3932;
}

.hero-primeros-pasos {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bg-verde {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.bg-verde img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: right;
}

.bg-amarillo {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-amarillo img {
    width: 300px;
    height: auto;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    gap: 40px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.hero-content {
    flex: 1;
    text-align: center;
    padding: 40px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-title img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.hero-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-btn img {
    width: 150px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding: 30px;
    }

    .hero-image-container img {
        max-width: 450px;
    }

    .bg-verde {
        width: 100%;
        height: 50%;
    }

    .bg-verde img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .hero-primeros-pasos {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-container {
        padding: 20px;
    }

    .hero-image-container img {
        max-width: 350px;
    }

    .hero-title img {
        max-width: 280px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-btn img {
        width: 130px;
    }

    .bg-verde {
        display: none;
    }

    .bg-amarillo img {
        width: 150px;
    }
}

/* ========================================
   PÁGINA INFOGRAFÍAS - ESTILOS
   ======================================== */

.infografia-page {
    min-height: 100vh;
    background: #ffffff url('../img/infografia/fondo.png') no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    position: relative;
    overflow-x: hidden;
}

.infografia-header {
    background: #1e3932;
    position: relative;
    z-index: 100;
}

.infografia-content {
    position: relative;
    z-index: 10;
    padding: 75px 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.infografia-cabezote {
    text-align: center;
    margin-bottom: 30px;
}

.infografia-cabezote img {
    max-width: 700px;
    width: 90%;
    height: auto;
}

.seccion-titulo {
    text-align: center;
    margin-bottom: 30px;
}

.seccion-titulo h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1e3932;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.seccion-titulo p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 10px;
}

.seccion-titulo .enlace-sinigan {
    font-size: 16px;
    color: #555;
}

.seccion-titulo .enlace-sinigan a {
    color: #4a9b3e;
    font-weight: 600;
    text-decoration: none;
}

.seccion-titulo .enlace-sinigan a:hover {
    text-decoration: underline;
}

.pasos-container {
    margin: 40px auto;
    text-align: center;
}

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

.footer-ica {
    margin-top: -50px;
    padding: 10px 0;
}

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

@media (max-width: 768px) {
    .infografia-content {
        padding: 30px 20px 40px;
    }

    .seccion-titulo h2 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .seccion-titulo p {
        font-size: 14px;
    }
}

/* ========================================
   PÁGINA POLÍTICA - ESTILOS
   ======================================== */

.politica-container {
    max-width: 900px;
    margin: 0 auto 40px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.politica-container h1 {
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.politica-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .politica-container {
        padding: 25px;
    }
}

/* ========================================
   PÁGINA VIDEOS - ESTILOS
   ======================================== */

.videos-page {
    min-height: 100vh;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.videos-header {
    background: #1e3932;
}

/* Decoraciones */
.deco-verde {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.deco-verde img {
    width: 250px;
    height: auto;
}

.deco-amarillo {
    position: fixed;
    right: -30px;
    bottom: -50px;
    z-index: 1;
    pointer-events: none;
}

.deco-amarillo img {
    width: 200px;
    height: auto;
}

/* Contenido principal videos */
.videos-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Lado izquierdo videos */
.videos-left {
    flex: 0 0 280px;
    text-align: left;
}

.videos-title {
    margin-bottom: 20px;
}

.videos-title img {
    max-width: 250px;
    height: auto;
}

.videos-title-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.videos-smile {
    width: 40px;
    height: auto;
}

.videos-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-infografias {
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-infografias:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-infografias img {
    height: 45px;
    width: auto;
}

/* Lado derecho - Carrusel */
.videos-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Carrusel de miniaturas */
.carousel-container {
    width: 100%;
    max-width: 700px;
}

.carousel-slides {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.video-card {
    position: relative;
    width: 180px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.video-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.video-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 15px 20px;
    color: white;
}

.video-card-overlay .video-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-card-overlay .video-info img {
    width: 28px;
    height: auto;
}

.video-card-overlay .video-text {
    display: flex;
    flex-direction: column;
}

.video-card-overlay .video-text .video-label {
    font-size: 11px;
    opacity: 0.9;
}

.video-card-overlay .video-text .video-name {
    font-size: 13px;
    font-weight: 600;
}

/* Controles del carrusel */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1e3932;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #1e3932;
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1e3932;
    stroke-width: 2;
    fill: none;
}

.carousel-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-line {
    width: 200px;
    height: 2px;
    background: #ddd;
    position: relative;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #1e3932;
    width: var(--progress, 60%);
    transition: width 0.3s;
}

.carousel-counter {
    font-size: 14px;
    color: #666;
}

/* Modal de video simple */
.video-modal-simple {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal-simple.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.modal-video-counter {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
}

/* Botones de navegacion del modal */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
}

.modal-nav-btn:hover {
    background: #1e3932;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn:hover svg {
    stroke: white;
}

.modal-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #1e3932;
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-modal-simple.active .modal-close-btn {
    display: flex;
}

.modal-close-btn:hover {
    background: #1e3932;
    transform: scale(1.1);
}

.modal-close-btn:hover svg {
    stroke: white;
}

.modal-close-btn svg {
    width: 24px;
    height: 24px;
    stroke: #1e3932;
}

.modal-page {
    position: relative;
    background: white;
    margin: 60px auto;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
}

/* Decoraciones del modal */
.modal-deco-verde {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.modal-deco-verde img {
    width: 250px;
    height: auto;
}

.modal-deco-amarillo {
    position: absolute;
    right: -30px;
    bottom: -50px;
    z-index: 1;
    pointer-events: none;
}

.modal-deco-amarillo img {
    width: 200px;
    height: auto;
}

.modal-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.modal-left {
    flex: 0 0 280px;
    text-align: center;
}

.modal-title {
    margin-bottom: 20px;
}

.modal-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3932;
    margin: 0;
    line-height: 1.2;
}

.modal-title h2 .title-black {
    color: #333;
    display: block;
}

.modal-title h2 .title-green {
    color: #4a9b3e;
    display: block;
}

.modal-title .smile-icon {
    width: 60px;
    margin-top: 10px;
}

.modal-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-btn-infografias {
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.modal-btn-infografias:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal-btn-infografias img {
    height: 45px;
    width: auto;
}

.modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.modal-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1e3932;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-btn:hover {
    background: #1e3932;
}

.modal-btn:hover svg {
    stroke: white;
}

.modal-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1e3932;
    stroke-width: 2;
    fill: none;
}

.modal-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-progress-line {
    width: 200px;
    height: 2px;
    background: #ddd;
    position: relative;
}

.modal-progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #1e3932;
    width: var(--progress, 20%);
    transition: width 0.3s;
}

.modal-counter {
    font-size: 14px;
    color: #666;
}

/* Responsive Videos */
@media (max-width: 1024px) {
    .videos-content,
    .modal-content {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }

    .videos-left,
    .modal-left {
        text-align: center;
        flex: none;
    }

    .carousel-slides {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 20px 10px;
    }

    .video-card {
        flex-shrink: 0;
        width: 150px;
    }

    .video-card img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .deco-verde,
    .deco-amarillo,
    .modal-deco-verde,
    .modal-deco-amarillo {
        display: none;
    }

    .video-card {
        width: 130px;
    }

    .video-card img {
        height: 190px;
    }

    .progress-line,
    .modal-progress-line {
        width: 100px;
    }

    .modal-title h2 {
        font-size: 24px;
    }
}

/* ========================================
   PÁGINA REGISTRO - ESTILOS
   ======================================== */

/* Header decorativo - Círculos */
.header-section {
    position: relative;
    background: #1e3932;
    overflow: hidden;
    padding-top: 64px;
}

.circulo-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circulo-amarillo-1 {
    width: 180px;
    height: 180px;
    top: 20px;
    right: -60px;
    background: #f5c842;
}

.circulo-amarillo-2 {
    width: 90px;
    height: 90px;
    top: 130px;
    right: 80px;
    background: #f5c842;
}

.circulo-verde {
    width: 50px;
    height: 50px;
    top: 90px;
    left: -15px;
    background: #8bc53f;
    opacity: 0.5;
}

.header-registro {
    text-align: center;
    padding: 45px 20px 25px;
    position: relative;
    z-index: 2;
}

.logo-sinigan img {
    height: 60px;
    width: auto;
    margin-bottom: 8px;
}

.logo-texto {
    font-size: 11px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.4;
}

/* Hero verde */
.hero-verde {
    background: #1e3932;
    padding: 35px 20px 0;
    text-align: center;
}

.hero-titulo {
    color: #7fb800;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    font-style: italic;
}

.hero-titulo span {
    display: block;
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    font-style: normal;
    margin-top: 5px;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.hero-subtitulo {
    display: inline-block;
    background: #7fb800;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 15px 15px 15px 0;
    line-height: 1.4;
    text-align: center;
}

.badge-amarillo {
    display: inline-block;
    background: #ffd100;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 12px 12px 0 0;
}

/* Sección instrucciones */
.instrucciones {
    padding: 0 20px 30px;
    text-align: center;
    background: #ffffff;
}

.instrucciones-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 30px 35px;
    box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.instrucciones-texto {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.instrucciones-texto a {
    color: #1a5f52;
    text-decoration: none;
    font-weight: 600;
}

.instrucciones-nota {
    font-size: 13px;
    color: #1a5f52;
    font-weight: 600;
    line-height: 1.6;
}

/* Sección pasos registro */
.pasos-section {
    padding: 60px 20px 50px;
    background: #ffffff;
}

.pasos-container {
    max-width: 900px;
    margin: 0 auto;
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
    align-items: stretch;
}

/* Tarjeta de paso */
.step-card {
    background: white;
    border-radius: 25px;
    padding: 35px 25px 28px;
    box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 250px;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.25);
}

.step-badge {
    background: #f5c842;
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    bottom: 100%;
    right: 25px;
    margin-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    color: #1a4028;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.step-description {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.step-description strong {
    color: #1a4028;
    font-weight: 600;
}

/* Paso 7 centrado */
.step-card:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }
.step-card:nth-child(7) { animation-delay: 0.7s; }

/* Registro exitoso */
.registro-exitoso {
    padding: 45px 20px 50px;
    text-align: center;
    background: #ffffff;
}

.exitoso-titulo {
    color: #1a5f52;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}

.exitoso-mensaje {
    display: inline-block;
    background: #7fb800;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 15px 15px 15px 0;
    line-height: 1.5;
    margin-bottom: 30px;
}

.registro-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.btn-registro-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-iniciar {
    background: #1e3932;
    color: #ffffff;
}

.btn-iniciar:hover {
    background: #2e5442;
}

.btn-registrese {
    background: #7fb800;
    color: #ffffff;
}

.btn-registrese:hover {
    background: #6da000;
}

.btn-volver {
    background: #f5c842;
    color: #ffffff;
}

.btn-volver:hover {
    background: #e5b832;
}

/* Footer registro */
.footer-registro {
    background: #ffffff;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-url {
    color: #7fb800;
    font-size: 16px;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(62%) sepia(75%) saturate(500%) hue-rotate(40deg) brightness(95%) contrast(90%);
}

/* Responsive Registro - Desktop (992px+) */
@media (min-width: 992px) {
    .header-registro {
        padding: 55px 40px 30px;
    }

    .logo-sinigan img {
        height: 70px;
    }

    .logo-texto {
        font-size: 12px;
    }

    .hero-titulo {
        font-size: 38px;
    }

    .hero-titulo span {
        font-size: 62px;
    }

    .hero-subtitulo {
        font-size: 16px;
        padding: 16px 40px;
    }

    .pasos-container {
        max-width: 950px;
    }

    .pasos-grid {
        gap: 55px 40px;
    }

    .step-card {
        padding: 40px 30px 32px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-card:nth-child(7) {
        max-width: 500px;
    }

    .circulo-amarillo-1 {
        width: 250px;
        height: 250px;
        top: 20px;
        right: -80px;
    }

    .circulo-amarillo-2 {
        width: 130px;
        height: 130px;
        top: 180px;
        right: 120px;
    }

    .circulo-verde {
        width: 70px;
        height: 70px;
        top: 100px;
        left: -20px;
    }

    .exitoso-titulo {
        font-size: 36px;
    }

    .exitoso-mensaje {
        font-size: 17px;
    }
}

/* Responsive Registro - Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .header-registro {
        padding: 50px 30px 28px;
    }

    .logo-sinigan img {
        height: 65px;
    }

    .hero-titulo {
        font-size: 28px;
    }

    .hero-titulo span {
        font-size: 44px;
    }

    .pasos-container {
        max-width: 700px;
    }

    .pasos-grid {
        gap: 45px 30px;
    }

    .circulo-amarillo-1 {
        width: 200px;
        height: 200px;
        top: 20px;
        right: -70px;
    }

    .circulo-amarillo-2 {
        width: 100px;
        height: 100px;
        top: 150px;
        right: 90px;
    }
}

/* Responsive Registro - Móvil (hasta 767px) */
@media (max-width: 767px) {
    .header-registro {
        padding: 40px 15px 22px;
    }

    .logo-sinigan img {
        height: 50px;
    }

    .logo-texto {
        font-size: 10px;
    }

    .hero-verde {
        padding: 30px 15px 0;
    }

    .hero-titulo {
        font-size: 20px;
    }

    .hero-titulo span {
        font-size: 32px;
    }

    .hero-subtitulo {
        font-size: 16px;
        padding: 14px 25px;
        border-radius: 12px 12px 12px 0;
    }

    .badge-amarillo {
        font-size: 14px;
        padding: 12px 22px;
        border-radius: 20px 20px 0 0;
    }

    .instrucciones {
        padding: 25px 15px 20px;
    }

    .instrucciones-texto {
        font-size: 13px;
    }

    .instrucciones-nota {
        font-size: 12px;
    }

    .pasos-section {
        padding: 50px 15px 40px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-card {
        padding: 30px 20px 24px;
    }

    .step-badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-description {
        font-size: 12px;
    }

    .step-card:nth-child(7) {
        max-width: 100%;
    }

    .registro-exitoso {
        padding: 35px 15px 40px;
    }

    .exitoso-titulo {
        font-size: 26px;
    }

    .exitoso-mensaje {
        font-size: 14px;
        padding: 12px 25px;
    }

    .circulo-amarillo-1 {
        width: 130px;
        height: 130px;
        top: 30px;
        right: -45px;
    }

    .circulo-amarillo-2 {
        width: 65px;
        height: 65px;
        top: 115px;
        right: 55px;
    }

    .circulo-verde {
        width: 40px;
        height: 40px;
        top: 85px;
        left: -12px;
    }

    .footer-registro {
        padding: 18px 20px;
    }

    .footer-url {
        font-size: 12px;
    }

    .footer-logo img {
        height: 60px;
    }
}

/* Responsive Registro - Móvil pequeño (hasta 400px) */
@media (max-width: 400px) {
    .hero-titulo {
        font-size: 18px;
    }

    .hero-titulo span {
        font-size: 28px;
    }

    .hero-subtitulo {
        font-size: 12px;
        padding: 10px 18px;
    }

    .pasos-grid {
        gap: 35px;
        max-width: 320px;
    }

    .step-card {
        padding: 28px 18px 22px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-description {
        font-size: 11px;
    }

    .exitoso-titulo {
        font-size: 24px;
    }

    .circulo-amarillo-1 {
        width: 100px;
        height: 100px;
        top: 30px;
        right: -35px;
    }

    .circulo-amarillo-2 {
        width: 50px;
        height: 50px;
        top: 100px;
        right: 40px;
    }
}
