:root {
    /* Paleta de Colores Exquisita */
    --color-bg: #F9F7F2;
    /* Crema muy suave */
    --color-text-primary: #3E2723;
    /* Marrón muy oscuro */
    --color-text-secondary: #6D4C41;
    /* Marrón medio */
    --color-accent: #D4AF37;
    /* Dorado sutil */
    --color-highlight: #FFF8E1;
    /* Amarillo pastel muy claro para fondos alternos */
    --color-white: #FFFFFF;

    /* Tipografía */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Variables de Diseño */
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(62, 39, 35, 0.05);
    --shadow-hover: 0 15px 40px rgba(62, 39, 35, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: 1.1em;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--color-text-primary);
    color: var(--color-white);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--color-text-primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.2);
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 39, 35, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-text-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    transition: var(--transition);
}

.btn-small:hover {
    background-color: var(--color-text-primary);
    transform: translateY(-1px);
}

/* Header Estilo Navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-primary);
}

/* Hero Section: Impacto Visual */
#hero {
    padding-top: calc(var(--header-height) + 60px);
    background: radial-gradient(circle at 70% 50%, #fff8e1 0%, transparent 60%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    padding-right: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100%;
    height: 100%;
    background-color: #F0EAD6;
    /* Círculo decorativo */
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Secciones Generales */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    font-weight: 700;
}

/* About Section */
#about {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Animación Crossfade Historia */
/* Animación Flip 3D */
/* Animación Flip 3D - En contenedor */
/* Animación Slide Reveal (Baraja) */
.about-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    /* Important for clean edges */
}

.about-image-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 20px;
}

/* La imagen de fondo (23.png) se queda quieta */
.about-image img:first-child {
    z-index: 1;
}

/* La imagen superior (12.png) se desliza */
.about-image img.img-top {
    z-index: 2;
    animation: slide-baraja 14s infinite ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    /* Shadow for depth */
}

@keyframes slide-baraja {

    0%,
    45% {
        transform: translateX(0);
    }

    50%,
    95% {
        transform: translateX(100%);
        /* Slides out to right */
    }

    100% {
        transform: translateX(0);
    }
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Products */
#products {
    background-color: var(--color-highlight);
}

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

.product-card {
    background: var(--color-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: 'NELSIDA';
    position: absolute;
    top: 50%;
    /* Centrado vertical mejor */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    /* Variable width para ser responsivo y gigante */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    /* Más visible */
    z-index: 0;
    pointer-events: none;
    font-family: 'Lato', sans-serif;
    /* Sans-serif bold como en la imagen */
    white-space: nowrap;
    letter-spacing: 10px;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.footer-col p {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-col i {
    width: 25px;
    color: var(--color-accent);
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--color-white);
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        padding-right: 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: block;
    }
}

/* Botón Flotante de WhatsApp */
/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    background-color: var(--color-white);
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #fcfcfc;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    opacity: 0;
    transition: all 0.3s ease-out;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    opacity: 1;
    max-height: 200px;
    /* Altura suficiente para el contenido */
}

/* Reviews Realistas */
.review-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    text-align: left;
    /* Alineación natural de lectura */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--color-accent);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
}

.review-stars {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Galería de Clientes (Estilo Instagram/Polaroid) */
.client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.client-photo-card {
    background: #fff;
    padding: 10px;
    padding-bottom: 40px;
    /* Espacio para el caption estilo Polaroid */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
    transition: all 0.3s ease;
    position: relative;
}

.client-photo-card:nth-child(odd) {
    transform: rotate(2deg);
}

.client-photo-card:nth-child(even) {
    transform: rotate(-2deg);
}

.client-photo-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.client-photo-placeholder {
    width: 100%;
    height: 250px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 3rem;
    overflow: hidden;
}

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

.photo-caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Indie Flower', cursive, sans-serif;
    /* Fallback a sans-serif si no está cargada */
    color: #555;
    font-size: 0.9rem;
}

/* Botón Flotante de WhatsApp */
/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-widget.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.wa-header {
    background-color: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-weight: 700;
    font-size: 1rem;
}

.wa-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-close {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: 0.3s;
}

.wa-close:hover {
    opacity: 1;
}

.wa-body {
    background-color: #E5DDD5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    padding: 20px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wa-message {
    background-color: white;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    max-width: 85%;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.wa-message-name {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}

.wa-message p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 4px;
}

.wa-footer {
    padding: 15px;
    background-color: #f0f0f0;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Toggle Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: none;
}

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

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

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

.wa-notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-red 2s infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

@keyframes pulse-red {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Banner Garantía de Frescura */
.freshness-banner {
    background: linear-gradient(45deg, var(--color-text-primary), #5D4037, var(--color-text-primary));
    background-size: 200% 200%;
    animation: banner-shine 6s ease infinite;
    color: var(--color-accent);
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.freshness-banner i {
    animation: pulse-icon 2s infinite;
}

@keyframes banner-shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }

    100% {
        transform: scale(1);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(62, 39, 35, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--color-white);
    margin: auto;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-modal {
    color: var(--color-text-secondary);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--color-text-primary);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.modal-image {
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.modal-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-details {
    margin-bottom: 30px;
    background: var(--color-bg);
    padding: 20px;
    border-radius: 10px;
}

.modal-details h4 {
    margin-bottom: 10px;
    color: var(--color-text-primary);
    font-size: 1rem;
}

.modal-details ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-text-secondary);
}

.modal-price-action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.whatsapp-order-btn {
    background-color: #25D366;
    border-color: #25D366;
    flex: 1;
}

.whatsapp-order-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 250px;
        max-height: 300px;
    }

    .modal-info {
        padding: 30px;
    }

    .modal-price-action {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        text-align: center;
    }
}

/* Pasos para Pedir */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}