:root {
    --color-principal: #abc2bf;
    --color-secundario: #b9a59d;
    --color-fondo: #f1f1f1;
    --color-acento: #ff9f1c;
    --color-texto: #333333;
    --color-texto-secundario: #7d7d7d;
}

* {
    padding: 0;
    box-sizing: border-box;
}

body, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9e9e9;
    color: var(--color-texto);
    padding: 20px;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background-color: var(--color-principal);
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
}

header .logo-text {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #7da0a3;
    color: var(--color-fondo);
}

.content {
    width: 95%;
    max-width: 1600px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.restaurant {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.restaurant:first-of-type {
    margin-bottom: 100px;
}

.restaurant-image {
    flex: 1;
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.restaurant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant-info h3 {
    margin-bottom: 10px;
}

.restaurant-info p {
    margin-bottom: 10px;
}

.small-images,
.small-images-2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.small-images img,
.small-images-2 img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    justify-content: center;
}

.small-images-3 img {
    width: 70%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    justify-content: center;
}

.restaurant-1 {
    flex-direction: row;
}

.restaurant-1 .restaurant-image {
    order: 1;
}

.restaurant-1 .restaurant-info {
    order: 2;
}

.restaurant-2 {
    flex-direction: row-reverse;
    padding-bottom: 100px;
}

.restaurant-2 .restaurant-info {
    order: 1;
}

.restaurant-2 .small-images {
    order: 2;
    margin-top: 10px;
    margin-left: 20px;
}

.restaurant-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
    flex-direction: row;
    padding-bottom: 100px;
}

.restaurant-3 .restaurant-image {
    flex: 1;
    max-width: 600px;
    max-height: 600px;
    width: 100%;
    display: flex;
    align-items: stretch;
    order: 1;
}

.restaurant-3 .restaurant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    order: 2;
}

.restaurant-3 .small-images-3 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.restaurant-3 .small-images-3 img {
    width: 100%;
    max-height: 300px;
    max-width: 400px;
    border-radius: 8px;
}

.que-hacer {
    background-color: #fff;
    padding: 40px 20px;
}

.que-hacer .content {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    max-width: 1600px;
    margin: 0 auto;
}

.que-hacer h2 {
    font-size: 36px;
    color: var(--color-principal);
    margin-bottom: 20px;
}

.que-hacer h3 {
    font-size: 28px;
    color: var(--color-principal);
    margin-top: 30px;
}

.que-hacer a {
    color: var(--color-principal);
    font-weight: bold;
    text-decoration: none;
    transition: text-decoration 0.3s, color 0.3s;
}

.que-hacer a:hover {
    text-decoration: underline;
    color: #7da0a3;
}

.actividad {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.actividad-img {
    flex: 1;
    max-width: 500px;
}

.actividad-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.actividad-info {
    flex: 2;
}

.actividad-info h4 {
    font-size: 24px;
    color: var(--color-principal);
    margin-bottom: 10px;
}

.actividad-info p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

.actividad:not(:last-child) {
    margin-bottom: 40px;
}

.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.social-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a {
    background-color: var(--color-principal);
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #7da0a3;
}

@media screen and (max-width: 1024px) {
    .restaurant,
    .actividad {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .restaurant-image,
    .restaurant-info,
    .actividad-img,
    .actividad-info {
        width: 100%;
        padding: 10px;
    }

    .restaurant-image img,
    .actividad-img img {
        width: 100%;
        height: auto;
    }

    .small-images {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 5px 20px;
        height: 70px;
        width: 100%;
    }

    header .logo {
        flex-direction: column;
        align-items: center;
        margin-bottom: 5px;
    }

    header .logo img {
        height: 30px;
        margin-bottom: 5px;
    }

    header .logo-text {
        font-size: 20px;
        text-align: center;
    }

    nav {
        justify-content: space-between;
        width: 100%;
        gap: 10px;
        padding: 0 5px;
    }

    nav a {
        font-size: 12px;
        padding: 5px 10px;
    }

    .que-hacer,
    .restaurant {
        padding-left: 0;
        padding-right: 0;
    }

    .que-hacer .content,
    .content {
        padding: 10px;
        box-shadow: none;
        border-radius: 0;
    }

    .actividad {
        flex-direction: column;
    }

    .actividad-img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .small-images,
    .small-images-2 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        overflow-x: auto;
    }

    .small-images img,
    .small-images-2 img {
        max-width: 100%;
        object-fit: contain;
        border-radius: 5px;
    }

    .actividad-info {
        order: 1;
    }

    .actividad-img {
        order: 2;
    }
}
