/* VARIABLES */
:root {
    --primary: #2C5F2D;
    --secondary: #FF6B35;
    --accent: #00A8E8;
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* HEADER */
header {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4a1b 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(26, 74, 27, 0.95) 100%);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* BUTTONS */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* GUIA BANNER */
.guia-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff5722 100%);
    color: var(--white);
    padding: 2rem;
}

.guia-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guia-banner-icon {
    font-size: 4rem;
}

.guia-banner-text {
    flex: 1;
    min-width: 300px;
}

.guia-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* SECTIONS */
.servicios-section,
.tienda-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.servicios-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.servicio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.servicio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.servicio-precio {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1rem 0;
}

/* TESTIMONIOS */
.testimonios-section {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.testimonios-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonio {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.testimonio-estrellas {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonio-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonio-autor {
    font-weight: 600;
    font-size: 1.1rem;
}

/* DENUNCIA PAGE */
.denuncia-page {
    margin-top: 80px;
    padding: 3rem 2rem;
    background: var(--light);
    min-height: 100vh;
}

.denuncia-container {
    max-width: 900px;
    margin: 0 auto;
}

.denuncia-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.benefits-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
}

.benefit {
    font-weight: 600;
    color: var(--success);
}

.form-denuncia {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    color: #666;
    font-size: 0.9rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* SUCCESS MESSAGE */
.success-message {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: var(--success);
    margin-bottom: 1rem;
}

.success-actions {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
}

.success-actions h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
}

.next-steps h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.info-banner {
    background: var(--accent);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

/* GUIA LANDING PAGE */
.guia-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4a1b 100%);
    color: var(--white);
}

.guia-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.valor-badge {
    display: inline-block;
    background: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.guia-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.guia-hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guia-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.urgency-bar {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.urgency-icon {
    font-size: 1.5rem;
}

.guia-hero-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

.guia-download-form .form-group {
    margin-bottom: 1.5rem;
}

.guia-download-form label {
    color: var(--dark);
}

.guia-success-message {
    text-align: center;
    padding: 2rem;
}

.guia-success-message .success-icon {
    font-size: 4rem;
    color: var(--success);
}

/* GUIA CONTENIDO */
.guia-contenido {
    padding: 5rem 2rem;
    background: var(--light);
}

.guia-contenido-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contenido-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contenido-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contenido-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contenido-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contenido-item p {
    color: #666;
    line-height: 1.7;
}

/* GUIA TESTIMONIOS */
.guia-testimonios {
    padding: 5rem 2rem;
    background: var(--white);
}

.testimonios-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
}

.testimonio-card .testimonio-estrellas {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonio-card p {
    color: var(--dark);
    margin-bottom: 1rem;
}

.testimonio-card .testimonio-autor {
    font-weight: 600;
    color: var(--primary);
}

/* GUIA CTA FINAL */
.guia-cta-final {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff5722 100%);
    color: var(--white);
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.urgency-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA FINAL SECTION */
.cta-final {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ANIMACIONES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 1rem;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .guia-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .guia-hero-container {
        grid-template-columns: 1fr;
    }

    .guia-hero h1 {
        font-size: 2rem;
    }

    .guia-hero h2 {
        font-size: 1.2rem;
    }

    .form-denuncia {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .servicios-grid,
    .contenido-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .benefits-bar {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero {
        padding: 4rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}