/* Main */ 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    overflow-x: hidden;
    height: 100%;
}
html {
    height: 100%;
}
/* Header */
header {
    background-color: #151F42;
    color: white;
    padding: 0 0;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    font-size: 1.2em;
    margin: 10px 0 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.cta-button {
    background-color: #ff6d00;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #e65c00;
}
.services, .about, .contact {
    margin-bottom: 40px;
}
.services h3, .about h3, .contact h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a73e8;
}
.services ul {
    list-style-type: none;
    padding: 0;
}
.services ul li {
    background-color: white;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact form {
    display: flex;
    flex-direction: column;
}
.contact form input, .contact form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
.contact form button {
    background-color: #1a73e8;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact form button:hover {
    background-color: #1557b0;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
footer p {
    margin: 0;
}
.container {
display: inline-block;
cursor: pointer;
}

.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: #ccc;
margin: 6px 0;
transition: 0.4s;
}

.change .bar1 {
transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
transform: translate(0, -11px) rotate(45deg);
}
.header-menu {
    display: grid;
    align-items: center;
    grid-template-columns: auto 100px;
    height: 200px;
}
.title {
    grid-row: 1;
    grid-column: 1;
}
.menu-btn {
    grid-row: 1;
    grid-column: 2;
}
.menu {
    position: absolute;
    background-color:#151F42;
    right: -300px;
    width: 300px;
    overflow: hidden;
    display: grid;
    cursor: pointer;
}
button {
    background-color: #151F42;
    padding: 10px;
    height: 75px;
    border: 0;
    color: #ccc;
    cursor: pointer;
}
button:hover {
    background-color: #1557b0;
}
.wsp {
    width: fit-content;
    position: fixed;
    bottom: 0%;
    right: 0%;
    cursor: pointer;
}

/* Index */
.tech-container {
    text-align: center;
}
.tech-grid > img {
    padding: 1%;
}
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}
.hero h2 {
    font-size: 2.5em;
    margin: 0;
}
.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

/* Servicios */
.services-container-tabs {
    display: flex;
    justify-content: space-evenly;
    background-color: #1a73e8;
}
.title{
    text-align: center;
}
.tab {
    background-color: #1557b0;
    color: #ccc;
    padding: 1%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tab:hover {
    cursor: pointer;
    background-color: #151F42;
}
.services-container-content {
    background-color:#151F42;
    color: #ccc;
    padding: 3%;
    height: 100%;
    flex: 1;
}
.services {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.active {
    background-color: #151F42;
}

    /* mod */
.flex-container{
    display: flex;
}