/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header: Fondo Interactivo con Canvas */
.hero {
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero h1 {
    font-size: 5em;
    margin: 0;
    animation: fadeInDown 2s ease-in-out forwards;
}

.hero-text {
    font-size: 1.5em;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}

.btn-cta {
    padding: 15px 40px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    transition: background-color 0.3s;
    opacity: 0;
    animation: fadeInUp 3.5s ease-in-out forwards;
}

.btn-cta:hover {
    background-color: #ff4b4b;
}

/* Animaciones */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secci¨Žn de Introducci¨Žn */
.intro-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.icon {
    text-align: center;
    margin: 20px;
}

.icon img {
    width: 100px;
    height: 100px;
}

.icon p {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Productos Section */
.productos-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.productos-section h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
}

.productos-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.producto {
    background-color: white;
    padding: 30px;
    margin: 15px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.producto:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.producto img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.producto h3 {
    margin: 15px 0 10px;
    font-size: 1.5em;
}

.btn {
    padding: 10px 25px;
    background-color: #2a2a72;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1a1a52;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.4em;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact-info a {
    color: #2a2a72;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1.1em;
}
