* {
    box-sizing: border-box;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #111;
    overflow-x: hidden;
}

.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 4.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    animation: slideUp 1.5s ease-out;
}

.hero p {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    animation: fadeIn 2.5s ease-in-out;
}

.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideUp 1s forwards;
}

.section:nth-of-type(2) {
    animation-delay: 0.3s;
}

.section:nth-of-type(3) {
    animation-delay: 0.6s;
}

.section:nth-of-type(4) {
    animation-delay: 0.9s;
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #222;
    text-align: center;
}

.section p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.cta {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeIn 2s ease-in-out;
}

.cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta button {
    background-color: white;
    color: #111;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cta button:hover {
    background-color: #ddd;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Telefonos */
@media (max-width: 768px) {

}

/* Tablets */
@media (min-width: 768px) {
  
}

/* Laptops */
@media (min-width: 1024px) {

}