/* PLENOR Landing Page - HTML5 Version */

:root {
    --background: #082a27;
    --foreground: #f2f2f1;
    --card: #224742;
    --primary: #bfd03e;
    --primary-foreground: #142a27;
    --muted-foreground: #dcdcdc;
    --border: #224742;
    --radius: 0.5rem;
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 900; line-height: 1.1; }

/* Animations */
@keyframes slide-in-top { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink-bar { 0%, 100% { opacity: 1; } 50% { opacity: 0.85; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-delay { 0% { opacity: 0; transform: translateY(20px); } 20% { opacity: 0; } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-delay-2 { 0% { opacity: 0; transform: translateY(20px); } 40% { opacity: 0; } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-delay-3 { 0% { opacity: 0; transform: scale(0.95); } 60% { opacity: 0; } 100% { opacity: 1; transform: scale(1); } }
@keyframes pulse-slow { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.1); } }
@keyframes grid-pulse { 0%, 100% { opacity: 0.1; } 50% { opacity: 0.3; } }
@keyframes ping {
    75%, 100% {
        opacity: 0;
        transform: scale(2);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.animate-slide-in-top { animation: slide-in-top 0.8s ease-out forwards; }
.animate-blink-bar { animation: blink-bar 2s ease-in-out infinite; }
.animate-fade-in { animation: fade-in 1s ease-out forwards; }
.animate-fade-in-delay { animation: fade-in-delay 1.5s ease-out forwards; }
.animate-fade-in-delay-2 { animation: fade-in-delay-2 2s ease-out forwards; }
.animate-fade-in-delay-3 { animation: fade-in-delay-3 2.5s ease-out forwards; }
.animate-pulse-slow { animation: pulse-slow 8s ease-in-out infinite; }
.animate-grid-pulse { animation: grid-pulse 4s ease-in-out infinite; }

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Utility */
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.font-bold { font-weight: 700; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover { transform: scale(1.02); }

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 60px rgba(191, 208, 62, 0.4);
}

.btn-primary:hover {
    background-color: rgba(191, 208, 62, 0.9);
    box-shadow: 0 0 100px rgba(191, 208, 62, 0.7);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 2px solid rgba(191, 208, 62, 0.5);
}

.btn-outline:hover {
    background-color: rgba(191, 208, 62, 0.1);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1.75rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full { width: 100%; }

/* Urgency Bar */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1rem;
}

.urgency-bar-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.urgency-bar-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ping-dot {
    position: relative;
    display: inline-flex;
    height: 0.75rem;
    width: 0.75rem;
}

.ping-pulse {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-foreground);
    opacity: 0.75;
}

.ping-dot-inner {
    position: relative;
    border-radius: 50%;
    height: 0.75rem;
    width: 0.75rem;
    background-color: var(--primary-foreground);
}

.urgency-bar-message p {
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
}

.urgency-bar-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--primary-foreground);
    cursor: pointer;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.urgency-bar-close:hover { transform: scale(1.1); }

.urgency-bar.hidden { display: none; }

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 2rem;
    margin-top: 3rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background) via var(--background) to rgba(34, 71, 66, 0.3));
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(24, 38, 35, 0.3) 1px, transparent 1px), linear-gradient(to bottom, rgba(24, 38, 35, 0.3) 1px, transparent 1px);
    background-size: 4rem 4rem;
    opacity: 0.1;
    animation: grid-pulse 4s ease-in-out infinite;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background-color: rgba(191, 208, 62, 0.1);
    border-radius: 50%;
    filter: blur(180px);
    animation: pulse-slow 8s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    width: 100%;
    text-align: center;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(34, 71, 66, 0.6);
    backdrop-filter: blur(20px);
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(191, 208, 62, 0.2);
    margin-bottom: 2rem;
}

.logo-img { height: 1.5rem; }

.hero-title {
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span { display: block; }

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
}

.benefit-pill {
    background-color: rgba(34, 71, 66, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(191, 208, 62, 0.2);
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
}

.benefit-pill p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

/* Proof Section */
.proof-section {
    position: relative;
    padding: 8rem 1rem;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(34, 71, 66, 0.2) via var(--background) to var(--background));
}

.proof-container {
    max-width: 90rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.proof-badge {
    display: inline-block;
    background-color: rgba(191, 208, 62, 0.1);
    color: var(--primary);
    border: 1px solid rgba(191, 208, 62, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 900;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.proof-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.proof-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.proof-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-card {
    position: relative;
    background: linear-gradient(135deg, rgba(191, 208, 62, 0.2) via rgba(191, 208, 62, 0.1) to transparent);
    border: 2px solid rgba(191, 208, 62, 0.4);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.proof-card-hover:hover {
    border-color: rgba(191, 208, 62, 0.7);
    box-shadow: 0 0 120px rgba(191, 208, 62, 0.4);
    transform: scale(1.02);
}

.proof-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.proof-number {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 60px rgba(191, 208, 62, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
}

.proof-number-text {
    font-size: 0.7em;
    font-weight: 700;
    color: var(--primary);
}

.proof-number-value {
    font-size: 1em;
    font-weight: 900;
}

.proof-label {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--foreground);
    font-weight: 900;
    margin-bottom: 0.75rem;
    width: 100%;
}

.proof-sublabel {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    width: 100%;
}

/* Offer Section */
.offer-section {
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--background) to rgba(34, 71, 66, 0.1));
}

.offer-container {
    max-width: 80rem;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offer-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.offer-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.offer-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: rgba(34, 71, 66, 0.6);
    backdrop-filter: blur(0.5rem);
    border: 2px solid rgba(191, 208, 62, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(191, 208, 62, 0.5);
    box-shadow: 0 0 80px rgba(191, 208, 62, 0.25);
    transform: scale(1.02);
}

.service-icon {
    background-color: rgba(191, 208, 62, 0.15);
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    font-size: 2rem;
    color: var(--primary);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.625rem;
}

.feature-dot {
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 50%;
    background-color: var(--primary);
    flex-shrink: 0;
}

.offer-cta { text-align: center; }

/* Instagram Section */
.instagram-section {
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
}

.instagram-container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 4rem;
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(191, 208, 62, 0.1) to rgba(191, 208, 62, 0.05));
    border: 1px solid rgba(191, 208, 62, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--primary);
}

.instagram-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.instagram-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.instagram-embed {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: var(--card);
    border: 2px solid rgba(191, 208, 62, 0.3);
    transition: all 0.3s ease;
}

.instagram-embed:hover {
    border-color: rgba(191, 208, 62, 0.6);
    box-shadow: 0 0 80px rgba(191, 208, 62, 0.3);
    transform: scale(1.02);
}

.instagram-embed iframe {
    width: 100%;
    height: 100%;
}

.instagram-cta { text-align: center; }

/* Guarantee Section */
.guarantee-section {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.guarantee-container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    background-color: rgba(34, 71, 66, 0.4);
    backdrop-filter: blur(0.5rem);
    border: 2px solid rgba(191, 208, 62, 0.25);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    box-shadow: 0 0 80px rgba(191, 208, 62, 0.1);
}

.guarantee-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.guarantee-icon {
    background-color: rgba(191, 208, 62, 0.15);
    padding: 0.5rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
    color: var(--primary);
}

.guarantee-item:hover .guarantee-icon { transform: scale(1.1); }

.guarantee-item p {
    font-size: 1rem;
    color: var(--foreground);
    font-weight: 600;
    padding-top: 0.125rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper {
    background-color: rgba(34, 71, 66, 0.9);
    backdrop-filter: blur(0.5rem);
    border: 2px solid rgba(191, 208, 62, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.form-input,
.form-textarea {
    background-color: var(--background);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(191, 208, 62, 0.1);
}

.form-textarea {
    resize: none;
}

.form-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: rgba(34, 71, 66, 0.4);
    border: 1px solid rgba(191, 208, 62, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-method:hover {
    background-color: rgba(34, 71, 66, 0.6);
    border-color: rgba(191, 208, 62, 0.4);
    transform: translateX(4px);
}

.contact-method-icon {
    background-color: rgba(191, 208, 62, 0.15);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-method-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(191, 208, 62, 0.3), transparent);
}

.contact-whatsapp-btn {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.contact-footer {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.contact-footer p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Modal */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.5rem);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--card);
    border-radius: 1rem;
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-content {
    transform: scale(1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 60px rgba(191, 208, 62, 0.4);
    transition: all 0.3s ease;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    background-color: rgba(191, 208, 62, 0.9);
    box-shadow: 0 0 100px rgba(191, 208, 62, 0.7);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .proof-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .urgency-bar-message {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .urgency-bar-message p {
        font-size: 0.75rem;
    }
}
