body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: #f8f8f8;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

mark {
    text-align: center;
    width: 60%;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img {
    height: 40px;
    margin-right: 10px;
}
header .logo h1 {
    margin: 0;
    font-size: 24px;
    color: #9c27b0;
}
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: goldenrod;
}
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-size: contain;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 34px;
    font-weight: 40%;
    color: black;
    animation: fadeIn 1s ease, slideInDown 0.5s ease;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: black;
    animation: fadeIn 1s ease, slideInDown 0.5s ease;
}
.hero-section p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    color: black;
    animation: fadeIn 1s ease, slideInUp 0.5s ease;
}
.cta-button {
    background-color: goldenrod;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    animation: pulse 2s infinite alternate;
}
.cta-button:hover {
    background-color: #7b1fa2;
    transform: translateY(-2px);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideInDown {
    from {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    from {
        transform: translateY(50px);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}
.products-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}
.products-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: goldenrod;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
    padding: 0 20px;
}
.product-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.product-item img {
    width: 80%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.product-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}
.product-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.services-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f2f2f2;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: goldenrod;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
    padding: 0 20px;
}
.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.service-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: goldenrod;
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}
.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.gallery-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}
.gallery-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: goldenrod;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}
.faq-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}
.faq-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: goldenrod;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-question {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.faq-question:hover {
    background-color: #f0f0f0;
}
.faq-question h4 {
    font-size: 18px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding-right: 30px;
}
.faq-question i {
    font-size: 20px;
    color: goldenrod;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    background-color: #ffffff;
    padding: 0 20px 20px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: none;
    color: #555;
    line-height: 1.6;
    text-align: left;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}
.faq-answer.show {
    display: block;
    opacity: 1;
    height: auto;
}
footer {
    background-color: #333;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}
footer .social-icons {
    margin-bottom: 20px;
}
footer .social-icons a {
    font-size: 24px;
    color: #ffffff;
    margin: 0 10px;
    transition: color 0.3s ease;
}
footer .social-icons a:hover {
    color: #9c27b0;
}
footer p {
    font-size: 14px;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    header .logo {
        margin-bottom: 10px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin-left: 0;
        margin-top: 10px;
    }
    .hero-section h2 {
        font-size: 36px;
    }
    .hero-section p {
        font-size: 16px;
    }
    .products-section h2,
    .services-section h2,
    .gallery-section h2,
    .faq-section h2 {
        font-size: 30px;
    }
    .product-list,
    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .product-item {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    header {
        padding: 10px 20px;
    }
    header .logo img {
        height: 40px;
    }
    header .logo h1 {
        font-size: 20px;
    }
    .hero-section h2 {
        font-size: 28px;
    }
    .hero-section p {
        font-size: 14px;
    }
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .product-item h3 {
        font-size: 20px;
    }
    .product-item p {
        font-size: 14px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 14px;
    }
}

.ubicacion-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.ubicacion-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: goldenrod;
    text-align: center;
}

.map-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.ubicacion-info {
    text-align: center;
    margin-top: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ubicacion-info p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.ubicacion-info strong {
    color: goldenrod;
}

@media (max-width: 768px) {
    .ubicacion-section h2 {
        font-size: 30px;
    }

    .ubicacion-info {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ubicacion-section {
        padding: 60px 10px;
    }

    .ubicacion-section h2 {
        font-size: 24px;
    }

    .ubicacion-info {
        font-size: 14px;
        padding: 15px;
    }
}