@import url('https://fonts.googleapis.com/css?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/11.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 10vh;
    display: flex;
    align-items: center;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #FBF9F1; /* #FBF9F1 */
    font-size: 25px;
    font-weight: 800;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FBF9F1; /* #FBF9F1 */
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover {
    color: #AAD7D9; /* #AAD7D9 */
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 50px 20px;
}

.header-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #F9FAFC; /* #F9FAFC */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-content p {
    color: #F9FAFC; /* #F9FAFC */
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

section {
    display: flex;
    background-color: #E5E1DA; /* #E5E1DA */
    padding: 50px;
    margin-bottom: 80px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-image {
    flex: 1;
    margin-right: 50px;
}

.section-image img {
    width: 100%;
    border-radius: 10px;
}

.section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Alinea verticalmente el contenido */
    text-align: center; /* Centra el texto horizontalmente */
}

.section-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

.section-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

#diseno-web {
    flex-direction: row-reverse;
}

footer {
    position: relative;
    clear: both;
    width: 100%;
    background-color: #E5E1DA;
    color: #FBF9F1; 
    text-align: center;
    padding: 10px;
    display: block;
}

.social-media {
    background-color: #92C7CF; 
    padding: 50px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.social-media h2 {
    color: #AAD7D9; 
    margin-bottom: 20px;
}

.social-icons {
    list-style: none;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    margin: 0 10px;
}

.social-icons a {
    color: #AAD7D9; 
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color:  #AAD7D9; 
}

/* Estilos para el botón */
.btn {
    background-color: #AAD7D9; /* Color de fondo */
    color: #fff; /* Color del texto */
    padding: 10px 20px; /* Espaciado interno */
    border: none; /* Sin borde */
    border-radius: 5px; /* Borde redondeado */
    font-size: 16px; /* Tamaño del texto */
    cursor: pointer; /* Cursor de apuntador */
    transition: background-color 0.3s ease; /* Transición suave */
}

.btn:hover {
    background-color: #92C7CF; /* Color de fondo al pasar el cursor */
}
