﻿@font-face {
    font-family: 'roboto-regular';
    src: url('fonts/roboto-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



.container {
    margin-top: 30px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-family: roboto-regular,Sans-serif
}

iframe {
    height: 550px;
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.features {
    margin-top: 50px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

    .feature img {
        height: 80px;
        margin-right: 20px;
    }

    .feature h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .feature p {
        font-size: 18px;
        line-height: 1.5;
    }

.cta {
    margin-top: 50px;
    text-align: center;
}

    .cta a {
        font-size: 24px;
        padding: 15px 30px;
        background-color: #E97434;
        color: #fff;
        border-radius: 5px;
        transition: background-color 0.2s ease;
    }

        .cta a:hover {
            background-color: #F06C67;
            text-decoration: none;
        }

/* Estilos para el header */
header {
    background-color: #3D383C;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

    header img {
        height: 20px;
        margin-left: 20px;
    }

nav ul {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/*Estilos para el footer*/
footer {
    background-color: #3d383c;
    color: #fff;
    text-align: center;
    padding: 20px;
}

    footer img {
        display: block;
        margin: 0 auto;
        width:300px;
    }
