@font-face {
    font-family: Montserrat;
    src: url('fonts/Montserrat/Montserrat-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}  
@font-face {
    font-family: Montserrat;
    src: url('fonts/Montserrat/Montserrat-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}  
@font-face {
    font-family: Poppins;
    src: url('fonts/Poppins/Poppins-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Poppins;
    src: url('fonts/Poppins/Poppins-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Poppins;
    src: url('fonts/Poppins/Poppins-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}  
  
:root {
    --dark-orange:#FF5900;
    --orange:#ED8953;
    --midnight-navi:#0D193F;
    --dark-grey:#535252;
    --medium-gray:#8C8C8C;
    --light-grey:#D9D9D9;
    --lightest-grey:#F5F5F5;
    --white:#FFFFFF;
    --transparency-grey:rgba(176, 179, 182, 0.4);
    --transparency-10-black:rgba(0,0,0,0.1);
    --transparency-40-black:rgba(0,0,0,0.4);
    --transparency-10-grey:rgba(217,217,217,0.1);
    --transparency-80-light-grey:rgba(217,217,217,0.8);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}

html, body {      
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Arial';
    line-height: 1.6;
    color: var(--midnight-navi);
    
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--transparency-grey);
    color: var(--midnight-navi);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--transparency-10-black);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--midnight-navi);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--dark-orange);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: url('assets/banner-home.png'),var(--transparency-10-grey);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--transparency-40-black);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-content h1 strong {
    font-weight: 700;
    color: var(--dark-orange);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}
.cta-button img {
    width: 35px;
}
.cta-button {
    display: inline-flex;
    background: var(--dark-orange);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    gap: 10px;
    justify-content: space-between;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-grey);
}

.section-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--midnight-navi);
    font-weight: 700;
    align-items: center;
}
.section-title h2 {
    font-size: 2.5rem;
}
.subline {
    width: 100px;
    background-color: var(--orange);
    height: 3px;
}
.text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--dark-grey);
    line-height: 1.8;
    text-align: justify;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: url('assets/background-beneficios.png'),var(--transparency-40-black);
    background-size: cover;
    background-position: center;
    
    align-items: center;
    text-align: center;
    
    
}
.stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 0 0 0 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 0.29fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    justify-content: center;
}

.benefit-card {
    background: var(--transparency-80-light-grey);
    padding: 3rem 2rem;
    border-radius: 0 5px 5px 5px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    justify-content:left;
    height: 450px;
    width: 300px;
    min-height: 250px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--transparency-10-black);
    border-color: var(--orange);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 0 1.5rem;
    background: var(--orange);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}
.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--midnight-navi);
    font-weight: 700;
}

.benefit-card p {
    color: var(--dark-grey);
    line-height: 1.6;
    font-size: 1.1rem;
    
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-grey);
    justify-content: center;
}

.service-top {
    display: flex;
    flex-direction: column;

    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    padding-bottom: 50px;
    align-content: center;
    justify-content: center;
}
.services-content {
    display: flex;
    gap: 1.0rem;
    max-width: 1000px;
    justify-content: space-evenly;
    text-align: center;

}

.services-text h2 {
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}
.service-and-stat{
    display: flex;
    flex-direction: column;
    gap:4rem;
}

.services-stats {
    display: flex;
    max-width: 1000px;
    gap:3rem;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.stat-number {
    font-size: 3.7rem;
    font-weight: bold;
    color: var(--orange);
    font-family: 'Montserrat';
    line-height: 3rem;
}

.stat-label {
    font-size: 2.2rem;
    color: var(--dark-grey);
    font-family: 'Montserrat';
}

.stat-flex:nth-child(1){
    gap: 0rem;
}

.stat-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-image img {
    max-width: 300px;
    max-height: 320px;
}

.stat-images{
    display: flex;
    gap:10px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap:0.8rem;
}

.services-title {
    font-size: 2.5rem;
    color: var(--midnight-navi);
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-icon {
    width: 30px;
}
.service-item span{
    color: var(--dark-grey);
}
.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    gap: 12px;
    font-weight: bold;
    font-size: 1.02rem;
}

.service-image,
.service-image img {
    border-radius: 5px;
    max-width: 530px;
    width: 100%;
}

.service-image img {
    max-height: 100%;
    object-fit: cover;
    max-width: 530px;
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 100px 50px;
    background: url('assets/background-rodape.png');
    background-size: cover;
    background-position: bottom;
    color: var(--white);
    text-align: center;
    height: 700px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-method {
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}
.contact-icon img {
    display: flex;
    width: 50px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--midnight-navi);
}

.contact-method a {
    text-decoration: none;
}
.contact-method p {
    color: var(--midnight-navi);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--orange);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
    background: var(--dark-orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
}

.footer-text {
    font-size: 0.9rem;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link img,
.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1120px) {
    .benefit-card {
        max-width: 450px;
    }
}
@media (max-width: 870px) {
    .services-content{
        display: flex;
        flex-direction: row;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        margin-top: 10px;
    }
    .container {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .services-content > .services-text {
        align-items:start;
    }
    .services-content,
    .contact-methods {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .services-stats {
    flex-direction: column;
    }
    .stat-flex {
        flex-direction: row;
        justify-content: space-around;
    }
    .stat-item {
        flex-direction: row;
        gap:5px;
    }
    .stat-label {
        line-height: normal;
    }
    .stat-images {
        justify-content: center;
    }
    .benefit-card {
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 600px) {
     .hero {
        height: 800px;
    }
    .services-stats{
        align-items: center;
    }
    .services-content {
        gap:1.0rem;
        text-align: center;
    }
    .services-content > .services-text {
        align-items:center;
        text-align: center;
    }
    .services-content,
    .contact-methods {
        flex-direction: column;
    }
    .stat-flex{
        flex-direction: column;

    }
    .stat-images {
        flex-direction: column;
        justify-content: center;
        width: 274px;
    }
    .service-image img {
        border-radius: 5px;
        max-width: 360px;

    }
    .stat-image,
    .stat-image img {
        max-width: 274px;
        justify-content: center;
    }
}
@media (max-width: 350px){
    .hero {
        height: 800px;
    }
    .benefit-card {
        max-width: 280px;
    }
    .service-image,
    .service-image img {
    border-radius: 5px;
    max-width: 280px;
    }
    
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}