/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    line-height: 1.6;
    color: white;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/savage-background.jpeg");
    background-repeat: repeat;
    background-position: right top;
    background-attachment: fixed;
    background-blend-mode: darken;
    font-family: "Times New Roman", serif;
}

main {
    font-family: "Times New Roman", serif;
    line-height: 1.6;
    color: black;
}

.mydiv {
    margin: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: "Times New Roman", serif;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: darkred;
    color: white;
    padding: 15px 0;
    font-family: "Times New Roman", serif;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: black;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 30px;
    font-family: "Times New Roman", serif;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Botón */
.btn {
    display: inline-block;
    background-color: black;
    color: darkred;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-family: "Times New Roman", serif;
}

/* Grid de productos */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
    font-family: "Times New Roman", serif;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 10px 15px 0;
}

.card p {
    padding: 0 15px 15px;
}

/* Sección de video */
.video-section {
    background-color: transparent;
    padding: 40px 0;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 20px auto 0;
}

/* Sección sobre nosotros */
.about {
    padding: 40px 0;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text h2 {
    margin-bottom: 15px;
    color: white;
}

.about-text p {
    margin-bottom: 15px;
    color: black;
}

/* Footer */
footer {
    background-color: darkred;
    color: white;
    padding: 40px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.copyright {
    text-align: center;
    padding: 15px 0;
    background-color: #1a252f;
    margin-top: 20px;
}

/* Media Queries para diseño responsivo */
@media (min-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header h2 {
        color: white;
        margin-bottom: 0;
    }

    .hero {
        padding: 120px 20px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-section {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (min-width: 900px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .flex {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
        margin: 0 50px;
        padding: 10px;
    }

    .about-image {
        flex: 1;
    }

    .footer-section {
        flex: 0 0 calc(33.333% - 20px);
    }

    .hero h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 150px 20px;
    }

    .card img {
        height: 250px;
    }
}

section {
    text-align: justify;all : ;
}´
