/* Reseteo de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animación de carga inicial */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Estilo general */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f4f4f4 0%, #e9ecef 100%);
    color: #333;
    animation: fadeInUp 1s ease-out;
    overflow-x: hidden;
}

/* Header principal */
.main-header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(-45deg, #8A2BE2, #FF8C00, #8A2BE2, #FF8C00);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.main-header > * {
    position: relative;
    z-index: 1;
}

/* Estilos para centrar la imagen */
.centered-image {
    text-align: center;
    margin: 20px 0;
}

.header-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.brand-name {
    font-size: 80px;
    font-weight: bold;
    animation: fadeInScale 1.5s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-name .omni {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.brand-name .life {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.authorized-name {
    font-size: 36px;
    font-weight: bold;
    margin-top: -15px;
    margin-left: 130px;
    color: #ffffff;
    animation: slideInFromLeft 1.2s ease-out 0.5s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.distributor {
    font-size: 18px;
    margin-top: -8px;
    margin-left: 190px;
    color: #ffffff;
    animation: slideInFromRight 1.2s ease-out 0.8s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sección de productos */
.products {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    margin-top: -10px;
    animation: fadeInUp 1s ease-out 1s both;
}

.products h2 {
    background: linear-gradient(45deg, #8A2BE2, #FF8C00);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: none;
}

/* Clases utilitarias para contenido responsive */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Agregar margen inferior para evitar que el mensaje flotante tape el contenido */
    margin-bottom: 120px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 20px 0;
    align-items: start;
    /* Asegurar espacio adicional al final para el mensaje flotante */
    padding-bottom: 20px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.2);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #8A2BE2, #FF8C00);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    animation: pulse 0.6s ease-in-out;
}

.product-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.product-short {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}

.product-img-price {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
    height: 240px;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-img {
    width: 210px;
    height: 210px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-img-fallback {
    width: 210px;
    height: 210px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.product-img-fallback:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-price {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #fff;
    color: #8A2BE2;
    font-size: 22px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    white-space: nowrap;
}

.product-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.product-benefits li {
    margin-bottom: 6px;
    font-size: 15px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.product-benefits li::before {
    content: "🔹";
    position: absolute;
    left: 0;
    top: 0;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn::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;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulse 0.6s ease-in-out;
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    animation: bounceIn 0.8s ease-out 1.5s both;
}

.whatsapp-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mensaje flotante de afiliación */
.floating-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8A2BE2, #FF8C00);
    background-size: 200% 200%;
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.3);
    z-index: 1000;
    max-width: 300px;
    animation: gradientShift 4s ease infinite, bounceIn 1s ease-out 2s both;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-message:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.4);
}

.floating-content {
    position: relative;
}

.floating-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.floating-text p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95;
}

.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp-btn::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;
}

.floating-whatsapp-btn:hover::before {
    left: 100%;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 0.6s ease-in-out;
}

.floating-whatsapp-icon {
    width: 16px;
    height: 16px;
}

.floating-whatsapp-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* El botón de cerrar se ha eliminado para que el mensaje siempre esté visible */

/* Animación de entrada para el mensaje flotante */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-message {
    animation: slideInFromBottom 0.8s ease-out 1s both, gradientShift 4s ease infinite;
    /* El mensaje siempre estará visible */
}

/* Diseño Responsive Completo */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
        margin-bottom: 120px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main-header {
        padding: 30px 15px;
    }
    
    .brand-name {
        font-size: 50px;
    }
    
    .authorized-name {
        font-size: 24px;
        margin-top: -10px;
        margin-left: 60px;
    }
    
    .distributor {
        font-size: 14px;
        margin-top: -5px;
        margin-left: 80px;
    }
    
    .products {
        padding: 15px;
        margin-top: -5px;
    }
    
    .container {
        padding: 0 10px;
        margin-bottom: 120px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        padding-bottom: 20px;
    }
    
    .card {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 14px;
        margin-top: 15px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    .floating-message {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 15px;
    }
    
    .floating-text h3 {
        font-size: 16px;
    }
    
    .floating-text p {
        font-size: 13px;
    }
    
    .floating-whatsapp-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .floating-whatsapp-icon {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 480px) {
    .main-header {
        padding: 20px 10px;
    }
    
    .brand-name {
        font-size: 40px;
    }
    
    .authorized-name {
        font-size: 20px;
        margin-top: -8px;
        margin-left: 30px;
    }
    
    .distributor {
        font-size: 12px;
        margin-top: -3px;
        margin-left: 40px;
    }
    
    .products {
        padding: 10px;
        margin-top: 0px;
    }
    
    .products h2 {
        font-size: 20px;
    }
    
    .container {
        padding: 0 5px;
        margin-bottom: 120px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 20px;
    }
    
    .card {
        padding: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .whatsapp-btn {
        padding: 8px 14px;
        font-size: 13px;
        margin-top: 12px;
    }
    
    .whatsapp-icon {
        width: 16px;
        height: 16px;
    }
    
    .floating-message {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 12px;
    }
    
    .floating-text h3 {
        font-size: 15px;
    }
    
    .floating-text p {
        font-size: 12px;
    }
    
    .floating-whatsapp-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .floating-whatsapp-icon {
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 320px) {
    .brand-name {
        font-size: 32px;
    }
    
    .authorized-name {
        font-size: 16px;
        margin-left: 20px;
    }
    
    .distributor {
        font-size: 10px;
        margin-left: 25px;
    }
}

/* Estilos para el botón SEYTÚ */
.seytu-button-container {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInScale 0.8s ease-out 1.1s both;
}

.seytu-button {
    background: linear-gradient(135deg, #8A2BE2, #7B1FA2);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 20px 30px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 100px;
}

.seytu-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;
}

.seytu-button:hover::before {
    left: 100%;
}

.seytu-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, #9C27B0, #8E24AA);
}

.seytu-button:active {
    transform: translateY(-2px) scale(1.02);
}

.seytu-main-text {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.seytu-sub-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Estilos para la sección SEYTÚ */
.seytu-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    margin-top: 40px;
    text-align: center;
}

.seytu-section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #8A2BE2, #FF8C00);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.seytu-section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Estilos para las imágenes de introducción SEYTÚ */
.seytu-intro-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.seytu-intro-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #8A2BE2, #7B1FA2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seytu-intro-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    display: block !important;
}

.seytu-intro-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.seytu-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

.seytu-intro-image-container:hover .seytu-intro-image {
    transform: scale(1.05);
}

/* Fallback para cuando no hay imagen */
.seytu-intro-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8A2BE2, #7B1FA2);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.seytu-intro-image-container:has(img[src=""])::before,
.seytu-intro-image-container:not(:has(img))::before {
    opacity: 1;
}

.seytu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 20px;
    align-items: start;
}

/* Estilos para productos SEYTÚ - Solo imágenes informativas */
.seytu-product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out both;
}

.seytu-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.25);
}

.seytu-product-image-container {
    position: relative;
    background: #f8f9fa;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.seytu-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 20px 20px 0 0;
}

.seytu-product-whatsapp-container {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.seytu-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin: 0 auto;
    max-width: 250px;
}

.seytu-whatsapp-btn::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;
}

.seytu-whatsapp-btn:hover::before {
    left: 100%;
}

.seytu-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulse 0.6s ease-in-out;
}

.seytu-whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Estilos para el buscador */
.search-container {
    margin: 20px auto;
    max-width: 600px;
    padding: 0 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInScale 0.8s ease-out 1.2s both;
    position: relative;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #8A2BE2, #FF8C00);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.search-box:focus-within::before {
    opacity: 0.1;
}

.search-box:focus-within {
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: #333;
}

.search-input::placeholder {
    color: #999;
    font-style: italic;
}

.search-button {
    background: linear-gradient(45deg, #8A2BE2, #FF8C00);
    background-size: 200% 200%;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.search-button:hover::before {
    left: 100%;
}

.search-button:hover {
    background: linear-gradient(45deg, #7B1FA2, #E65100);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.search-button:active {
    transform: scale(0.95) rotate(0deg);
}

.search-results-info {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.search-results-info.results-found {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.search-results-info.no-results {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

/* Responsive para el botón SEYTÚ */
@media screen and (max-width: 768px) {
    .seytu-button-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .seytu-button {
        min-width: 180px;
        min-height: 90px;
        padding: 15px 25px;
    }
    
    .seytu-main-text {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
    
    .seytu-sub-text {
        font-size: 13px;
        letter-spacing: 0.8px;
    }
    
    .seytu-section {
        padding: 40px 15px;
    }
    
    .seytu-section-title {
        font-size: 2em;
    }
    
    .seytu-section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .seytu-intro-images {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        margin: 35px auto;
        padding: 0 15px;
    }
    
    
    .seytu-intro-image-container {
        min-height: 320px;
    }
    
    .seytu-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        margin: 35px auto;
        padding: 0 15px;
    }
    
    .seytu-product-image-container {
        min-height: 300px;
        max-height: 450px;
    }
    
    .seytu-product-whatsapp-container {
        padding: 15px;
    }
    
    .seytu-whatsapp-btn {
        padding: 12px 25px;
        font-size: 14px;
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .seytu-button-container {
        margin: 15px auto;
        padding: 0 10px;
    }
    
    .seytu-button {
        min-width: 160px;
        min-height: 80px;
        padding: 12px 20px;
    }
    
    .seytu-main-text {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .seytu-sub-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .seytu-section {
        padding: 30px 10px;
    }
    
    .seytu-section-title {
        font-size: 1.8em;
    }
    
    .seytu-section-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .seytu-intro-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
        padding: 0 10px;
    }
    
    
    .seytu-intro-image-container {
        min-height: 280px;
    }
    
    .seytu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
        padding: 0 10px;
    }
    
    .seytu-product-image-container {
        min-height: 250px;
        max-height: 400px;
    }
    
    .seytu-product-whatsapp-container {
        padding: 12px;
    }
    
    .seytu-whatsapp-btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 180px;
    }
}

/* Responsive para el buscador */
@media screen and (max-width: 768px) {
    .search-container {
        margin: 15px auto;
        padding: 0 15px;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 15px;
    }
    
    .search-results-info {
        margin-top: 10px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .search-container {
        margin: 10px auto;
        padding: 0 10px;
    }
    
    .search-box {
        border-radius: 20px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-button {
        padding: 10px 12px;
    }
    
    .search-results-info {
        margin-top: 8px;
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Estilos para el resaltado de búsqueda */
.search-highlight {
    background: linear-gradient(120deg, rgba(138, 43, 226, 0.3), rgba(255, 140, 0, 0.3));
    color: inherit;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(138, 43, 226, 0.6);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    box-shadow: 0 1px 3px rgba(138, 43, 226, 0.2);
    transition: all 0.2s ease;
}

.search-highlight:hover {
    background: linear-gradient(120deg, rgba(138, 43, 226, 0.4), rgba(255, 140, 0, 0.4));
    box-shadow: 0 2px 6px rgba(138, 43, 226, 0.3);
    transform: translateY(-1px);
}

/* Animación de aparición para el resaltado */
@keyframes highlightAppear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.search-highlight {
    animation: highlightAppear 0.3s ease-out;
}

/* Responsive styles for product images */
@media screen and (max-width: 768px) {
    .product-img-price {
        height: 220px;
        padding: 12px;
    }
    
    .product-img,
    .product-img-fallback {
        width: 190px;
        height: 190px;
        padding: 8px;
    }
}

@media screen and (max-width: 480px) {
    .product-img-price {
        height: 200px;
        padding: 10px;
    }
    
    .product-img,
    .product-img-fallback {
        width: 170px;
        height: 170px;
        padding: 6px;
    }
    
    .product-price {
        font-size: 18px;
        padding: 4px 10px;
    }
}

@media screen and (max-width: 360px) {
    .product-img-price {
        height: 180px;
        padding: 8px;
    }
    
    .product-img,
    .product-img-fallback {
        width: 150px;
        height: 150px;
        padding: 5px;
    }
    
    .product-price {
        font-size: 16px;
        padding: 3px 8px;
    }
}
