/* ==== Variables y Diseño Base ==== */
:root {
    --primary: #FF3B00; /* Naranja/Rojo del logo */
    --primary-hover: #D63200;
    --secondary: #0077FF; /* Azul del agua */
    --dark: #0A192F; /* Azul marino profundo */
    --dark-light: #112240;
    --text: #333333;
    --text-light: #8892B0;
    --white: #FFFFFF;
    --bg-light: #F4F7F6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* ==== Botones ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 59, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ==== Navbar ==== */
.navbar {
    background-color: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
}

.logo-text .highlight {
    color: var(--secondary);
}

/* ==== Hero Section ==== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: url('assets/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    display: inline-block;
    margin-bottom: 20px;
}

.badge-orange {
    background-color: rgba(255, 59, 0, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-blue {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ==== Oferta Section (Anclaje) ==== */
.offer-section {
    padding: 80px 0;
    background-color: var(--white);
}

.offer-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.offer-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 8px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.offer-info {
    flex: 1;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-info h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.old-price {
    font-size: 1.5rem;
    color: #8892B0;
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.new-price span {
    font-size: 1.2rem;
    color: white;
}

.urgency {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 25px;
}

/* ==== Star Product (Tilapias) ==== */
.star-product {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.star-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.star-text {
    flex: 1;
}

.star-text h2 {
    font-size: 3rem;
    margin: 15px 0;
}

.price-highlight {
    background-color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    margin: 20px 0;
    border: 2px solid var(--secondary);
}

.price-highlight strong {
    color: var(--primary);
    font-size: 2rem;
}

.benefits {
    list-style: none;
    margin-bottom: 30px;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.star-image-container {
    flex: 1;
}

.floating-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==== Catalog Section ==== */
.catalog-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.product-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E2E8F0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-img-box {
    height: 200px;
    background-color: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    font-size: 4rem;
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-details .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.product-details .price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.product-details .btn {
    width: 100%;
    border-color: var(--primary);
    color: var(--primary);
}

.product-details .btn:hover {
    background-color: var(--primary);
    color: white;
}

/* ==== Footer ==== */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-info p {
    color: var(--text-light);
}

.footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* ==== Float WhatsApp ==== */
.float-ws {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

.float-ws:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
    .offer-card {
        flex-direction: column;
    }
    .star-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
