/* Gradients */
.degradado {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fdfdfd, #fdfdfd, transparent, transparent); 
    z-index: 2;
}

.degradado-main-bottom-h {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #fdfdfd, transparent);
    z-index: 4;
}

.degradado-main-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, #fdfdfd, transparent);
    z-index: 4;
}

.degradado-main-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #fdfdfd, transparent);
    z-index: 4;
}

.cover {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #00577D;
    opacity: 0.5;
    z-index: 3;
}

/*Buttons */
.feature-btn {
        display: inline-block;
        padding: 8px 32px;
        background: #fdfdfd;
        color: #EB662A;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        border: #EB662A 2px solid;
        cursor: pointer;
    }

.feature-btn:hover {
        background: #fdfdfd;
        color: #00577D;
        border: #00577D 2px solid;
        transition: background 0.3s, color 0.3s;
    }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
}

header {
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #575758;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: #EB662A;
}

.lang-switcher {
    font-weight: 700;
    color: #575758;
    font-size: 20px;
}

.lang-switcher a {
    color: #575758;
    text-decoration: none;
    margin: 0 3px;
    transition: color 0.2s;
}

.lang-switcher a:hover {
    color: #EB662A;
}

/* Hero Section */

.hero {
    background-image: url(/img/hero-home.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; 
    height: 90vh; 
}

.txt-hero {
    position: absolute; 
    left: 0; 
    bottom: 120px; 
    z-index: 2; 
    padding-left: 120px; 
    color: #00577D;
}

.txt-hero h1 {
    margin: 0 0 10px 0; 
    font-size: 60px; 
}

.txt-hero p {
    margin: 0 0 30px 0; 
    font-size: 1.2rem;
}

.txt-hero img {
    height: 40px;
}

.txt-hero hr {
    border: none; 
    border-top: 5px solid #00577D; 
    width: 425px; 
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .txt-hero {
        bottom: 100px; 
        padding-left: 80px; 
    }

    .txt-hero h1 {
        font-size: 48px; 
    }
    
    .txt-hero p {
        font-size: 1rem; 
    }
    
    .txt-hero hr {
        width: 350px; 
    }
}

@media (max-width: 767px) {
    .degradado {
        display: none; 
    }

    .degradado-main-bottom-h {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background: linear-gradient(to top, #fdfdfd, #fdfdfd , transparent);
        z-index: 1;
    }

    .txt-hero {
        bottom: 80px; 
        padding-left: 20px; 
    }

    .txt-hero h1 {
        font-size: 32px; 
    }
    
    .txt-hero p {
        font-size: 0.9rem; 
    }
    
    .txt-hero hr {
        width: 250px; 
    }
}

/* Dual Text Section */

.dual-text-section {
    width: 100%;
    margin: 40px 0;
}
    
.dual-text-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.left-text {
    color: #EB662A;
    font-size: 64px;
    font-weight: 700;
    flex: 1;
    text-align: right;
}
    
.right-text {
    margin: 30px 125px 30px 0px;
    font-weight: 400;
    font-size: 16px;
    flex: 1;
    text-align: left;
}

@media (max-width: 767px) {
    .dual-text-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-text, .right-text {
        text-align: center;
    }

    .left-text {
        font-size: 36px;
    }

    .right-text {
        font-size: 14px;
        margin: 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .dual-text-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-text, .right-text {
        text-align: center;
    }

    .left-text {
        text-align: start;
        font-size: 92px;
    }

    .right-text {
        text-align: start;
        font-size: 16px;
    }
}

/*Featured Section */

.features-section {
    position: relative;
    padding: 1350px 0 80px 0;
}

.features-img-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url(/img/job-container.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.features-img-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 87, 125, 0.6);
    z-index: -2;
}

.features-title {
    padding-top: 80px;
    text-align: center;
    font-size: 32px;
    color: #fdfdfd;
    margin-bottom: 36px;
    letter-spacing: 1px;
    font-weight: 700;
}

.feature-titles {
    display: flex;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: #fdfdfd;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
}

.feature-icon img {
    padding-left: 160px;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}

.feature-titles h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #00577D;
    text-align: center;
}

.feature-titles h4 {
    font-size: 14px;
    font-weight: 500;
    color: #EB662A;
    text-align: left;
}

.just-titles {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.feature-desc {
    font-size: 16px;
    color: #444;
    text-align: start;
    margin-bottom: 50px;
}

.advantages {
    padding: 100px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.advantages-container h2 {
    color: #00577D;
    font-size: 64px;
}

.advantage-card img {
    padding-top: 100px;
    width: 1500px;
}

footer {
    box-shadow: #000 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #575758;
    padding: 50px 20px 20px;
}

footer h2 {
    color: #EB662A;
    text-align: left;
    font-size: 28px;
    margin-left: 200px;
    margin-bottom: 40px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 10px;
    margin-left: 200px;
    margin-right: 200px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    font-size: 24px;
    color: #575758;
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 24px;
    color: #575758;
    text-decoration: none;
}

.footer-column a:hover {
    color: #EB662A;
}

form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    border: none;
    border-bottom: 2px solid #00577D;
    color: #222;
    padding: 10px 10px 8px 10px;
    margin-bottom: 18px;
    background: transparent;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s;
}

form input:focus, form textarea:focus {
    border-bottom: 2.5px solid #EB662A;
    outline: none;
}

form button {
    background-color: #fff;
    color: #EB662A;
    border: 2px solid #EB662A;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

form button:hover {
    background: #fff;
    border: #00577D 2px solid;
    color: #00577D;
}

.footer-bottom {
    border-top: 1px solid #575758;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    margin-right: 15px;
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #EB662A;
}

.forms-main {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 8px;
}
.forms-main h1 {
    text-align: center;
    color: #00577D;
    font-size: 64px;
    margin-bottom: 50px;
}