:root {
    --bg-cream: #fffefa;
    --maroon: #8b233a;
    --dark-brown: #5c3d2e;
    --accent-red: #a62a44;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

/* Typography Helpers */
.text-maroon {
    color: var(--maroon);
}

.text-center {
    text-align: center;
}

.portadas img {
    width: 100%;
}

/* Logo Section */
.logo-section {
    padding: 60px 0;
}

.logo-container {
    max-width: 300px;
    margin: 0 auto;
}

.logo-img {
    width: 100%;
    height: auto;
}

.tagline {
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--maroon);
    font-weight: 700;
}

/* Cards Section */
.products {
    padding: 0px 0 70px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    justify-items: center;
}

.card {
    background-color: var(--dark-brown);
    border-radius: 40px;
    padding: 10px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
}

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

.image-placeholder {
    width: 100%;
    aspect-ratio: 1/1.2;
    background: var(--white);
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.card-title {
    font-size: 1.2rem;
    min-height: 60px;
    font-weight: 400;
    line-height: 1.5;
}

p.descripro {
    text-align: left;
    font-size: 14px;
    min-height: 100px;
}

p.price {
    font-size: 22px;
    margin-bottom: 10px;
}

.btn-order {
    background-color: var(--accent-red);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;

}

.btn-order:hover {
    background-color: var(--maroon);
    transform: scale(1.02);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.iframe iframe {
    width: 100% !important;
    height: 500px;
}


@media (max-width: 600px) {
    .iframe iframe {
        width: 100% !important;
        height: 400px;
    }

    @media (max-width: 600px) {
        .colm2 {
            grid-template-columns: 1fr !important;
        }
    }

    .col.textbn {
        margin-left: 0px !important;
        padding: 20px;
    }

    .bnhome {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .logo-section {
        padding: 20px 0;
    }

    .logo-container {
        WIDTH: 50%;
    }

    .textbn h2 {
        font-size: 1.7rem !important;
    }

    h3.card-title {
        margin: 0px !important;
        padding: 0px !important;
        min-height: 40px;
    }

    p.descripro {

        min-height: 0;
        margin-bottom: 10px;
    }

}

/* Responsiveness */
@media (max-width: 768px) {


    .tagline {
        font-size: 1.1rem;
        padding: 0 20px;
    }


    .card {
        max-width: 100%;
    }

    .colm2 {
        grid-template-columns: 1fr;
    }
}

.colm2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.col {
    width: 100%;
}

.bnhome {
    background: #e9d2c4;
    border-radius: 20px;
}

.imgbn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgbn img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.col.textbn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -100px;
}

.textbn h2 {
    font-size: 3rem;
    color: var(--maroon);
    line-height: 1.2;
    margin-bottom: 10px;
}

.baners {
    margin-bottom: 60px;
}

.col.textdeli {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

ul {
    list-style: none;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 40px auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(139, 35, 58, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(139, 35, 58, 0.1);
    transform: translateY(-2px);
}

.faq-toggle {
    display: none;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--maroon);
    user-select: none;
    transition: var(--transition);
}

.faq-header:hover {
    background-color: rgba(139, 35, 58, 0.03);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--maroon);
    border-radius: 2px;
    transition: var(--transition);
}

/* Horizontal bar */
.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical bar */
.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Content wrapper for height animation using CSS Grid hack */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-inner {
    overflow: hidden;
    padding: 0 25px;
    color: var(--dark-brown);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-inner p {
    padding-bottom: 20px;
}

/* Checked State */
.faq-toggle:checked+.faq-header {
    background-color: rgba(139, 35, 58, 0.05);
}

.faq-toggle:checked+.faq-header .faq-icon {
    transform: rotate(45deg);
}

.faq-toggle:checked+.faq-header .faq-icon::after {
    opacity: 0;
}

.faq-toggle:checked~.faq-content {
    grid-template-rows: 1fr;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-header {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}