html {
    scroll-behavior: smooth;
}

/* --- REGLAS GENERALES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Open Sans', sans-serif;
    color: white;
    background-color: #fff;
}

/* --- HEADER --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 80px;
    background: transparent;
    z-index: 10;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

nav li a:hover,
nav li a.active {
    color: #ff7a45;
    border-bottom: 2px solid #ff7a45;
    padding-bottom: 5px;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('tu-imagen-de-fondo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    background-color: #ff7a45;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff8c61;
}

/* --- SOBRE NOSOTROS --- */
.about-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    color: #333;
}

.about-content {
    flex: 3;
    padding: 80px;
}

.about-content h2 {
    font-family: 'Anton', sans-serif;
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

.about-content p {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 16px;
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about-images img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.about-content .btn {
    display: block;
    margin: 0 auto;
}

/* --- CONTACTO LATERAL --- */
.contact-side {
    flex: 1;
    background-color: #1a1a1a;
    color: white;
    padding: 80px 40px;
}

.contact-side h3 {
    font-family: 'Anton', sans-serif;
    margin-bottom: 40px;
    font-size: 24px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item i {
    color: #ff7a45;
    margin-right: 10px;
}

.contact-item p {
    margin-top: 5px;
    line-height: 1.4;
}

.contact-item a {
    color: #ff7a45;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
    }

    .contact-side {
        text-align: center;
    }
}