@import url(fonts.css);
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --blue:#1f2a6e;
    --second-color: #FFFBFC;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
    width: 100%;
    background-color: var(--blue);
    padding: 0px 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info ion-icon {
    font-size: 24px;
    color: var(--dark-blue);
}

.contact-info span {
    font-size: 1rem;
    color: var(--dark-gray);
}

.header-button {
    background-color: var(--second-color);
    color: var(--blue);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#section1 {
    position: relative;
    background: url('/assets/images/hero.webp');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: black;
}

#section2 {
    position: relative;
    background: url('/assets/images/hero2.webp');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: white;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-top: 50px;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cta-button {
    background-color: green;
    color: #fff;
    padding: 20px 40px;
    width: 200px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    display: flex;
    gap: 6px;
    font-weight: 500;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100px;
    display: block;
}
.highlights {
    background-color: var(--blue);
    color: white;
    padding: 60px 20%;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: scale(1.05);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.services {
    background-color: var(--second-color);
    text-align: center;
    padding: 80px 20%;
}

.btn-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

h3{
    margin-bottom: 10px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    align-self: center;
}

.learn-more {
    margin-top: auto;
    background-color: #2e4299;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: #1f2a6e;
}

@media (max-width: 900px) {
    .services{
        padding: 40px 10%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .cta-button {
        font-size: 0.9em;
    }
}

.process-section {
    text-align: center;
    padding: 80px 10%;
    background-color: var(--second-color);
}

.process-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-item {
    position: relative;
    max-width: 550px;
    padding: 20px;
    border: 1px var(--blue) solid;
    border-radius: 8px;
    background-color: white;
    margin: 20px 0;
}

.process-number {
    background-color: var(--blue);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.line {
    width: 2px;
    height: 50px;
    background-color: #D39120;
}

.separador{
    width: 100px;
    height: 2px;
    background-color: #D39120;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    p{
        font-size: 1.1em;
    }
}

.about-us {
    background-color: var(--blue);
    color: white;
    padding: 40px;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.handshake-icon {
    width: 100px;
    height: 100px;
}

.counter {
    font-size: 3rem;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.years-text {
    font-size: 1.8rem;
}

.history {
    max-width: 600px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

@media(min-width: 768px) {
    .about-us-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .about-us {
        background-color: var(--blue);
        color: white;
        padding: 40px 10%;
    }
    .experience, .history {
        width: 50%;
    }
    .history {
        text-align: left;
    }
}

.call-to-action {
    background-color: #084B83;
    padding: 60px 20px;
    text-align: center;
}

.call-to-action h2 {
    font-size: 2rem;
    color: var(--second-color);
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.2rem;
    color: var(--second-color);
}

.footer {
    background-color: #1f2a6e;
    padding: 20px 25% 0;
    color: var(--second-color);
  }
  
  header a:hover, .footer a:hover{
    text-decoration: underline;
  }

  .footer-top{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 30px;
    gap: 30px
  }
  
  .social-list {
    display: flex;
    gap: 25px;
  }
  
  .footer-list-title{
    text-align: center;
    text-decoration: none;
    font-size: 20px;
  }
  
  .social-link {
    font-size: 35px;
  }
  
  .footer-bottom {
    border-block-start: 1px solid hsl(0, 0%, 50%);;
    padding: 10px 0 0 0;
  }
  
  .footer-brand{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  footer .logo{
    margin-top: 0;
  }
  .termos {
    display: flex;
    justify-content: space-evenly;
    border-block-start: 1px solid hsl(0, 0%, 50%);;
    text-align: center;
    margin-top: 25px;
    padding: 18px 0px;
  }
  
  .termos a{
    text-decoration: underline;
  }
  .copyright {
    text-align: center;
    margin: 10px 0 0;
  }

  @media screen and (max-width: 768px) {
    .footer{
      padding: 20px 0 0;
    }
    .termos{
      flex-direction: column;
      gap: 8px;
    }
    .logo{
      display: flex;
      justify-content: center;
    }
    .logo img{
      width: 60%;
    }
  }

  .contact-section {
    background-color: var(--second-color);
    padding: 60px 20px;
}

.container-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.container-header p {
    font-size: 20px;
    color: var(--blue);
}

.container-header h2 {
    font-size: 24px;
    color: #333;
    margin-top: 10px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #160abe;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--blue);
    outline: none;
}

.form-label {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 16px;
    color: #aaa;
    transition: 0.2s;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -16px;
    left: 15px;
    font-size: 16px;
    color: var(--blue);
}

.submit-button {
    background-color: var(--blue);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0a113d;
}

.service-list{
    padding: 0 10%;
}

.service-detail {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #3700ff;
    border-radius: 8px;
    margin: 50px 0;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-detail:hover {
    transform: scale(1.02);
}

.service-content{
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px;
    transition: transform 0.3s;
}

.service-icon-large {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.service-description{
    width: 70%;
}

@media (max-width: 768px) {
    .service-list {
        padding: 0 2%;
    }
    .service-description{
        width: 100%;
    }
}