:root {
    --primary-orange: #f97316;
    --primary-blue: #3b82f6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob.orange {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    top: -100px;
    right: -100px;
}

.blob.blue {
    width: 350px;
    height: 350px;
    background: var(--primary-blue);
    bottom: -50px;
    left: -50px;
}

.blob.yellow {
    width: 300px;
    height: 300px;
    background: #fbbf24;
    top: 40%;
    left: 20%;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-cta {
    background: var(--text-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.status-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

.hero-title .highlight-text {
    color: var(--primary-orange);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 30px -5px rgba(249, 115, 22, 0.4);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-icon {
    font-size: 1.25rem;
}

.indicator-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}

/* Hero Image Cards */
.hero-image-wrapper {
    position: relative;
}

.main-image-card {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    transform: rotate(2deg);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.floating-price {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-orange);
}

.best-seller {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.bs-icon {
    font-size: 2rem;
}

.bs-text {
    display: flex;
    flex-direction: column;
}

.bs-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.bs-name {
    font-size: 1.1rem;
    font-weight: 900;
}

/* Features */
.features {
    padding: 8rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--white);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Contact Info */
.contact-info {
    padding-bottom: 8rem;
}

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

.contact-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.c-icon {
    font-size: 1.5rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 900;
}

.inline-link {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links-minimal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.social-links-minimal a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.social-links-minimal a:hover {
    color: var(--primary-orange);
}

.schedule {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.schedule li span:last-child {
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    padding: 4rem 0;
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.main-footer p {
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-whatsapp-link {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
    text-align: center;
}

.btn-whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .nav-actions {
        display: none;
    }
}
