/* Non-critical CSS - Loaded after LCP */

/* CTA Button styles */
.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Sticky CTA button sizing */
.sticky-cta .btn-primary,
.sticky-cta .btn-whatsapp {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    white-space: nowrap;
    flex: 1 1 auto;
    max-width: 220px;
    min-width: 140px;
}

@media (max-width: 640px) {
    .sticky-cta .btn-primary,
    .sticky-cta .btn-whatsapp {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-width: 0;
        flex: 1 1 0;
    }
}

@media (max-width: 380px) {
    .sticky-cta .btn-primary,
    .sticky-cta .btn-whatsapp {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Location cards */
.location-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    border-color: #06b6d4;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.2);
}

/* Feature cards */
.feature-card {
    background: linear-gradient(135deg, #fafaf9 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #06b6d4);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon containers */
.icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.icon-container.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

/* Number display */
.number-display {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b35, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
}

.badge.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

/* Step indicators */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Section dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    margin: 4rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .number-display {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-whatsapp {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Pulse animation for CTAs */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.pulse-button {
    position: relative;
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 3px solid #ff6b35;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* Product category cards */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
}

/* Trust badges */
.trust-badge {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
}
