body {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-image: url('img/lateral-view-smiling-women-holding-tablet-clipboard.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-family: 'Rubik', sans-serif; /* Usar Rubik para el header */
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo img {
    width: 200px;
}

.home-section {
    position: relative;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Rubik', sans-serif; /* Usar Rubik para esta sección */
}

.background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-content {
    background: #365071;
    padding: 50px;
    border-radius: 10px;
}

.home-logo {
    width: 100px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;    
    background: #f06446;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 700;
}

.button:hover {
    background: #f59020;
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: rgba(197, 220, 233, 0.8);
    text-align: center;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    margin: 10px;
}

.feature-card .icon {
    margin-bottom: 10px;
}

.feature-card svg {
    width: 50px;
    height: 50px;
    fill: #eec1c4;
}

.contact-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Barlow', sans-serif; /* Usar Barlow para esta sección */
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-section label {
    display: block;
    margin-bottom: 5px;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #737373;
    border-radius: 5px;
    background: #fff;
}

.contact-section button {    
    background: #f06446;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section button:hover {
    background: #f59020;
}

footer {
    background-color: #737373;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: 'Rubik', sans-serif; /* Usar Rubik para el footer */
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons svg {
    width: 100%;
    height: 100%;
    fill: #fff; /* Cambia esto según el color que prefieras */
}

.social-icons a:hover svg {
    fill: #c5dce9; /* Cambia esto según el color que prefieras al pasar el mouse */
}

.copyright {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%;
    }
}
