/* Estilos generales */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Estilos para el encabezado */
header {
    background-color: #0d0d0d;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #222;
}

/* Estilos para la sección Hero */
.hero {
    background-color: #000;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #f0f0f0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #22c55e;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.card {
    background-color: #1a1a1a;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.product-image {
    border-radius: 0.75rem;
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Estilos para el pie de página */
footer {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #222;
}

footer a {
    color: #22c55e;
    text-decoration: none;
}

/* Estilos específicos para el chatbot */
#webchat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: 2px solid #22c55e;
    background-color: #1a1a1a;
}

.mascota-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
    border: 3px solid #1a1a1a;
    overflow: hidden;
}

.mascota-button:hover {
    transform: scale(1.05);
    background-color: #16a34a;
}

.mascota-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    .mascota-button {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
    .mascota-button img {
        width: 100%;
        height: 100%;
    }
    #webchat {
        width: 90%;
        height: 80%;
        bottom: 15px;
        right: 5%;
        left: 5%;
    }
}