:root {
    --primary: #1A365D;
    --secondary: #00B4D8;
    --accent: #7209B7;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.trust-bar {
    background: var(--bg-light);
    border-top: 1px solid #edf2f7;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-items {
    display: flex;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.brand-slogan {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #e0f2fe, #ffffff);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.highlight {
    color: var(--secondary);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Search Bar */
.search-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
    margin: 2.5rem 0;
    max-width: 700px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    font-size: 1.2rem;
    color: var(--text-light);
}

.search-box input {
    flex: 1;
    border: none;
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
    color: var(--text-dark);
}

.btn-search {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background: #0096b4;
    transform: scale(1.05);
}

.search-hints {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.search-hints a {
    color: var(--secondary);
    text-decoration: none;
    margin: 0 5px;
}

.search-hints a:hover {
    text-decoration: underline;
}

/* Features/Cards */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 3rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #edf2f7;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.brand-logo {
    height: 50px;
    max-width: 140px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0.9);
    opacity: 0.8;
    transition: var(--transition);
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.brand-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Compatibles Section */
.compatibles-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.compatibles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.produ.combo-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.combo-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.combo-card:hover .combo-main-img {
    transform: scale(1.1);
}

.combo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.branch-pickup-badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    border: 1px solid #bae6fd;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
    border-color: var(--secondary);
}

.product-img-container {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-item-img {
    transform: scale(1.05);
}

.savings-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e63946;
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

.old-price {
    font-size: 1rem;
    color: #a0aec0;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 10px;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: #ffffff;
}

.comparison-table {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.comp-card {
    flex: 1;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #edf2f7;
    position: relative;
}

.comp-card.premium {
    border: 2px solid var(--secondary);
    background: var(--bg-light);
    transform: scale(1.05);
}

.comp-vs {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.5;
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.comp-card h3 {
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary);
}

.comp-card ul {
    list-style: none;
    padding: 0;
}

.comp-card li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .comparison-table {
        flex-direction: column;
    }

    .comp-vs {
        display: none;
    }

    .comp-card.premium {
        transform: none;
    }
}

/* Combos Section */
.combos-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.combo-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.combo-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    z-index: 2;
    border: none;
}

.combo-card.featured .price {
    color: var(--secondary) !important;
}

.combo-card.featured .combo-features li {
    color: #cbd5e1;
}

.combo-card.featured .combo-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.combo-card.featured h3 {
    color: white;
}

.combo-card.featured p {
    color: #cbd5e1;
}

.combo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #edf2f7;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.combo-badge.hot {
    background: #feb2b2;
    color: #9b2c2c;
    animation: combo-pulse 2s infinite;
}

@keyframes combo-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.combo-images {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.plus {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.combo-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.combo-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    text-align: left;
}

footer {
    padding: 60px 0;
    border-top: 1px solid #edf2f7;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}