﻿/* Reset CSS para asegurar consistencia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: linear-gradient(to right,#000e7dee 10%, #0f9c00ed 100%); /*color basico de ingles practico azul y verde*/
    color:whitesmoke;
    padding: 10px 5px;
    text-align: center;
}

    header h1 {
        font-size: 3em;
        margin-bottom: 10px;
    }

    header p {
        font-size: 1.2em;
    }

nav {
    display: flex;
    justify-content: center;
    background-color: #000e7dee;
}

    nav a {
        color: white;
        padding: 15px 20px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
    }

        nav a:hover {
            background-color: #333;
        }

.hero {
    background-image: url('/Template/images/hero2.1.JPG'); /* Cambiar por una imagen corporativa adecuada */
    background-size: cover;
    background-position: top;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

    .hero h2 {
        font-size: 2.0em;
        margin-bottom: 20px;
        background-color:#403f3f27
    }

    .hero p {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

.btn {
    background-color: #0f9c00ed;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .btn:hover {
        background-color: #0c7d00;
    }

.services {
    padding: 50px 20px;
    text-align: center;
    background-color: white;
}

    .services h2 {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

.service-item {
    display: inline-block;
    width: 30%;
    margin: 20px;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .service-item:hover {
        transform: translateY(-10px);
    }

    .service-item h3 {
        color: #0f9c00ed;
        margin-bottom: 15px;
    }

.testimonials {
    background-color: #e9e9e9;
    padding: 50px 20px;
    text-align: center;
}

    .testimonials h2 {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

.testimonial {
    margin-bottom: 30px;
    font-style: italic;
}

footer {
    background-color: #000e7dee;
    color: white;
    padding: 20px;
    text-align: center;
}

    footer a {
        color: #0f9c00ed;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }
