/* ==========================================================================
   Landing Page - Agendar (Google Ads Conversion Page)
   ========================================================================== */

/* Header */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.75rem 0;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-header-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Hero */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 1rem;
}

.lp-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.lp-trust-badge i {
    color: var(--primary-gold);
}

.lp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lp-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.lp-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.lp-btn-main {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.lp-btn-whats {
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
    border-color: #25D366;
    color: #25D366;
}

.lp-btn-whats:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #25D366;
}

.lp-hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lp-hero-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lp-hero-badges i {
    color: var(--primary-gold);
}

/* Section Titles */
.lp-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}

.lp-section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* Services Section */
.lp-services {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.lp-service-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lp-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.lp-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.lp-service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lp-service-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
}

/* Plans Section */
.lp-plans {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
}

.lp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.lp-plan-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.lp-plan-card:hover {
    text-decoration: none;
}

.lp-plan-freq {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.lp-plan-card .plan-features {
    flex-grow: 1;
}

.lp-plan-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.lp-feature-off {
    opacity: 0.4;
    text-decoration: line-through;
}

.lp-feature-off i {
    color: #666 !important;
}

.lp-plan-featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.lp-plan-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Social Proof */
.lp-proof {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.lp-proof-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-proof-stars {
    color: var(--primary-gold);
    font-size: 1rem;
    display: flex;
    gap: 0.25rem;
}

.lp-proof-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.lp-proof-card strong {
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Location Section */
.lp-location {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
}

.lp-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lp-location-detail i {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.lp-location-detail strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.lp-location-detail p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lp-final-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.lp-final-ctas .btn {
    text-align: center;
    justify-content: center;
}

.lp-location-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lp-location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lp-location-image:hover img {
    transform: scale(1.03);
}

/* Sticky CTA (mobile) */
.lp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.lp-sticky-cta.visible {
    transform: translateY(0);
}

.lp-sticky-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* WhatsApp Float */
.lp-whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 50;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lp-whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Footer */
.lp-footer {
    background: #080808;
    padding: 2rem 0;
    border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .lp-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .lp-hero-title {
        font-size: 2.25rem;
    }

    .lp-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .lp-btn-main,
    .lp-btn-whats {
        width: 100%;
        max-width: 320px;
    }

    .lp-hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lp-plan-featured {
        transform: scale(1);
    }

    .lp-plan-featured:hover {
        transform: translateY(-5px);
    }

    .lp-proof-grid {
        grid-template-columns: 1fr;
    }

    .lp-location-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lp-location-image {
        order: -1;
    }

    .lp-location-image img {
        height: 250px;
    }

    .lp-section-title {
        font-size: 1.75rem;
    }

    /* Show sticky CTA on mobile */
    .lp-sticky-cta {
        display: block;
    }

    .lp-whatsapp-float {
        bottom: 5.5rem;
    }
}

@media (max-width: 480px) {
    .lp-hero-title {
        font-size: 1.85rem;
    }

    .lp-services-grid {
        grid-template-columns: 1fr;
    }

    .lp-plans-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-service-card {
        padding: 2rem 1.25rem;
    }

    .lp-header-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}
