/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #37564E;
    background-color: #ffffff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 90px;
    width: auto;
    max-width: 250px;
}

/* Hero Section */
.hero-section {
    background-image: url('./flor-de-granola-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-quote {
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: clamp(20px, 4vw, 40px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    /*font-style: italic; */
}

.hero-cta-button {
    background: rgba(255, 255, 255, 0.8);
    color: #4CAF50;
    ;
    padding: clamp(14px, 2.5vw, 18px) clamp(25px, 5vw, 40px);
    border: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-cta-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Product Section */
.product-section {
    min-height: 100vh;
    padding: 60px 0;
    /*background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%); */
    position: relative;
    display: flex;
    align-items: center;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23f0f0f0" opacity="0.5"/><circle cx="80" cy="80" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="40" cy="60" r="0.5" fill="%23e0e0e0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #4CAF50;
    font-weight: 700;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin: 0 auto;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 580px 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    height: calc(100vh - 200px);
    min-height: 600px;
}

.product-image {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.feature-card {
    background: white;
    padding: 18px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    max-width: 280px;
    min-width: 240px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03), rgba(129, 199, 132, 0.03));
    z-index: -1;
}

.feature-card h3 {
    color: #4CAF50;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.feature-card p {
    color: #373737;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.left-top {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin-right: -10px;
    margin-top: -50px;
}

.right-top {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    margin-left: -10px;
    margin-top: -50px;
}

.left-bottom {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    margin-right: -10px;
    margin-bottom: -50px;
}

.right-bottom {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    margin-left: -10px;
    margin-bottom: -50px;
}

.ichef-machine {
    max-width: 100%;
    width: 550px;
    height: 550px;
    margin: 0;
    background-image: url('./ichef-frente.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
}

/* Price Section */
.price-section {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: stretch;
    background: white;
    position: relative;
    overflow: hidden;
}

.price-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

.price-image-column {
    background-image: url('./flor-granola.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-image-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.price-cta-column {
    background: #37564E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.price-cta-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
}

.price-intro {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.price-display {
    margin-bottom: 40px;
}

.price-label {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    color: #81C784;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price-amount {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.price-original {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #B0BDB0;
    font-weight: 600;
    text-decoration: line-through;
    margin-bottom: 10px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.price-features {
    list-style: none;
    margin: 30px 0 40px;
    padding: 0;
}

.price-features li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    opacity: 0.9;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #81C784;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    padding: 20px 40px;
    border: 3px solid #4CAF50;
    border-radius: 50px;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:visited {
    color: white;
    text-decoration: none;
}

.button-container {
    position: relative;
    display: inline-block;
    z-index: 2;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: #66BB6A;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2C3E36 0%, #2C3E36 100%);
    color: white;
    text-align: center;
    padding: 40px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #81C784, #4CAF50);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #81C784;
    margin: 0;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.contact-details span {
    font-size: 0.9rem;
    font-weight: 300;
    color: white;
    opacity: 0.85;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-note {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.footer-note p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-content {
        grid-template-columns: 1fr 450px 1fr;
        height: auto;
        min-height: 500px;
        gap: 5px;
    }

    .ichef-machine {
        width: 400px;
        height: 400px;
    }

    .feature-card {
        max-width: 240px;
        min-width: 200px;
        padding: 16px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 400;
    }

    .feature-card p {
        font-size: 0.9rem;
        color: #373737;
        font-weight: 600;
    }

    .left-top,
    .left-bottom {
        margin-right: -5px;
    }

    .right-top,
    .right-bottom {
        margin-left: -5px;
    }

    .price-cta-column {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 8px 0;
    }

    .logo img {
        height: 65px;
    }

    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-overlay-content {
        padding: 0 15px;
    }

    .hero-quote {
        font-size: clamp(1.2rem, 3.8vw, 2.4rem);
        line-height: 1.4;
        letter-spacing: 0.5px;
    }

    .product-section {
        padding: 50px 0;
        min-height: auto;
        display: block;
    }

    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .product-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        height: auto;
        min-height: auto;
    }

    .feature-card {
        max-width: 100% !important;
        width: 100%;
        order: 2;
        margin: 0 !important;
    }

    .product-image {
        order: 1;
        margin-bottom: 0;
    }

    .left-top {
        order: 2;
    }

    .right-top {
        order: 3;
    }

    .left-bottom {
        order: 4;
    }

    .right-bottom {
        order: 5;
    }

    .ichef-machine {
        width: 400px;
        height: 400px;
    }

    .price-section {
        min-height: auto;
    }

    .price-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .price-image-column {
        min-height: 50vh;
        order: 1;
        background-size: 120%;
        background-position: center center;
    }

    .price-cta-column {
        order: 2;
        padding: 50px 30px;
    }

    .cta-content {
        max-width: 100%;
    }

    .price-features {
        margin: 25px 0 35px;
    }

    .price-features li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .cta-button {
        padding: 18px 35px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 6px 0;
    }

    .logo img {
        height: 70px;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-overlay-content {
        padding: 0 20px;
    }

    .hero-quote {
        font-size: clamp(1.1rem, 3.2vw, 2rem);
        line-height: 1.45;
        letter-spacing: 0.8px;
    }

    .product-section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .product-content {
        gap: 25px;
    }

    .feature-card {
        padding: 20px;
        margin: 0 !important;
    }

    .feature-card h3 {
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #373737;
        font-weight: 600;
    }

    .ichef-machine {
        width: 350px;
        height: 350px;
    }

    .price-image-column {
        min-height: 45vh;
        background-size: 130%;
        background-position: center center;
    }

    .price-cta-column {
        padding: 40px 20px;
    }

    .price-intro {
        margin-bottom: 20px;
    }

    .price-display {
        margin-bottom: 30px;
    }

    .price-features {
        margin: 20px 0 30px;
    }

    .price-features li {
        font-size: 0.95rem;
        margin-bottom: 8px;
        padding-left: 20px;
    }

    .price-features li::before {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 30px;
        max-width: 260px;
        letter-spacing: 1px;
    }

    footer {
        padding: 25px 0;
    }

    .footer-content {
        gap: 20px;
    }

    .contact-name {
        font-size: 1.2rem;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-details span {
        font-size: 0.85rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 12px;
    }

    .contact-details span {
        font-size: 0.8rem;
    }

    .contact-name {
        font-size: 1.1rem;
    }

    .footer-note p {
        font-size: 0.7rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    .footer-content {
        gap: 18px;
    }
}