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

:root {
    --primary-text-color: #fff;
    --secondary-text-color: #EE8E20;
    --third-text-color: #152F5C;

    --orage-background: #EC8D3E;
    --dark-blue-background: #071D3B;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif !important;
}

section {
    padding: 4rem 0;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    top: 24px;
}

#nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    width: 230px;
    height: auto;
}

#btn-orcamento {
    font-size: 13px;
    font-weight: 700;
    background-color: #264073;
    color: var(--primary-text-color);
    padding: 10px 25px;
    /* altura menor */
    height: 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


#btn-orcamento:hover {
    background-color: #1a3257;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}


#intro {
    min-height: 80vh;
    width: 100%;
    background: url("intro-bg.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--primary-text-color);
}

#intro .container {
    margin-top: 100px;
}


#intro #intro-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#intro #intro-text h1 {
    color: var(--primary-text-color);
    font-size: 45px;
    margin-bottom: 10px;
}

#intro #intro-text p {
    color: var(--primary-text-color);
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
    margin-top: 10px;
}

#intro #intro-text #btn-intro {
    font-size: 12px;
    font-weight: 700;
    background-color: var(--secondary-text-color);
    color: black;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    text-decoration: none;
}

#intro #intro-text #btn-intro:hover {
    background-color: #d77a1b;
}


#who-is-a2 {
    background-color: var(--primary-text-color);
}

#who-is-a2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#who-is-a2 #who-is-a2-text h2 {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-text-color);
}

#who-is-a2 #who-is-a2-text h3 {
    font-size: 45px;
    font-weight: 700;
    margin-top: 0;
    color: var(--third-text-color);
}

#who-is-a2 #who-is-a2-video {
    background-color: #d77a1b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    margin-bottom: 10px;
}


#who-we-serve {
    background-color: var(--orage-background);
}

#who-we-serve .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#who-we-serve #who-we-serve-text h2 {
    font-size: 15px;
    font-weight: 800;
    color: #2F488E;
}

#who-we-serve #who-we-serve-text h3 {
    font-size: 45px;
    font-weight: 500;
    margin-top: 0;
    color: #fff;
}

#who-we-serve-items {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

#who-we-serve-text-block {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    width: 380px;
}

#who-we-serve-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    position: relative;
}

#who-we-serve-item img {
    align-self: flex-start;
}

#who-we-serve #who-we-serve-residencial {
    width: 200px;
    height: auto;
}

#who-we-serve #who-we-serve-comercial {
    width: 200px;
    height: auto;
}

#who-we-serve-item #who-we-serve-rural {
    width: 300px;
    height: auto;
}

#who-we-serve-item #title {
    font-size: 15px;
    font-weight: 800;
    color: #2F488E;
    margin: 1rem 0 0 0;
}

#who-we-serve-item #subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
}


#who-we-serve-divider {
    width: 2px;
    height: 100px;
    background-color: #2F488E;
}


#services {
    background-color: var(--dark-blue-background);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

#services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('services-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

#services .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#services #services-text h2 {
    font-size: 15px;
    font-weight: 800;
    color: var(--orage-background);
}

#services #services-text h3 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--primary-text-color);
}


#services #services-list ul {
    font-size: 19px;
    font-weight: 500;
    color: var(--primary-text-color);
    line-height: 50px;
}

#services #services-button {
    font-size: 14px;
    font-weight: 700;
    background-color: var(--orage-background);
    color: var(--dark-blue-backgroundr);
    text-align: center;
    width: 35%;
    margin-top: 15px;
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#services #services-button:hover {
    background-color: #d77a1b;
}

/* #services #services-image-mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 30px;
} */

#benefits {
    background-color: #F4F4F4;
}

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

#benefits #benefits-text h2 {
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    color: black;
}

#benefits #benefits-text h3 {
    font-size: 45px;
    font-weight: 700;
    margin-top: 0;
    text-align: center;
    color: var(--third-text-color);

}

#benefits #benefits-specifications-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 60px;
    margin-top: 40px;
}

#benefits .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#benefits .benefit-item img {
    width: 64px;
    height: auto;
    margin-bottom: 10px;
}

#benefits .benefit-item p {
    font-size: 18px;
    font-weight: 700;
    color: black;
}

#payback {
    background-color: #fff;
}

#payback #payback-text h2 {
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    color: black;
}

#payback #payback-text h3 {
    font-size: 45px;
    font-weight: 700;
    margin-top: 0;
    text-align: center;
    color: var(--third-text-color);
    margin-bottom: 20px;
}

#payback #payback-text p {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
}

#payback #payback-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

#payback #payback-graphic img {
    width: 60rem;
    height: auto;
}

#economy {
    min-height: 100%;
    width: 100%;
    background: url("economy-bg.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
}

#economy .container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#economy #economy-text h2 {
    font-size: 14px;
    font-weight: 800;
    text-align: start;
    color: var(--primary-text-color);
    margin-bottom: 40px;
}

#economy #economy-text h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: start;
    margin-top: 0;
    color: var(--primary-text-color);
    line-height: 45px;
}

#economy #economy-text p {
    font-size: 16px;
    font-weight: 700;
    text-align: start;
    margin-top: 0;
    color: var(--primary-text-color);
    line-height: 28px;
}

#economy #economy-text #economy-info {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-align: start;
    color: var(--primary-text-color);
    margin-top: 30px;
    margin-bottom: -5px;
    line-height: 1.5;
}


#economy #economy-text #economy-button {
    font-size: 14px;
    font-weight: 700;
    background-color: var(--orage-background);
    color: var(--dark-blue-backgroundr);
    width: 93%;
    margin-top: 15px;
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#economy #economy-text #economy-button:hover {
    background-color: #d77a1b;
}


#our-projects {
    background-color: #f5f5f5;
}

#our-projects .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}


#our-projects #our-projects-text h2 {
    font-size: 15px;
    font-weight: 800;
    color: black;
}

#our-projects #our-projects-text h3 {
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    color: var(--third-text-color);
}

#our-projects #our-projects-text p {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

#our-projects #our-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.project-card {
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.project-card.tall {
    grid-column: span 2;
}

.project-card.wide {
    grid-column: span 2;
}

.project-card.tall-vertical {
    grid-row: span 2;
}

#contact {
    background-color: var(--dark-blue-background);
}

#contact .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#contact #contact-text h2 {
    font-size: 14px;
    font-weight: 800;
    color: var(--orage-background);
}

#contact #contact-text h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    margin: 25px 0 0 0;
    color: var(--primary-text-color);
}

#contact #contact-text span {
    color: var(--orage-background);
    font-weight: 800;
}

#contact #contact-form {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--orage-background);
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px 16px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    color: #333;
}

.full-width {
    width: 100%;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-group label {
    font-size: 14px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.radio-group input[type="radio"] {
    accent-color: var(--orage-background);
    width: 16px;
    height: 16px;
}

.two-thirds {
    flex: 0 0 50%;
}

.one-third {
    flex: 0 0 40%;
    margin-left: 50px;
}

.form-group textarea {
    padding: 12px 16px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    color: #333;
    resize: none;
}

.submit-button {
    background-color: var(--orage-background);
    color: var(--dark-blue-background);
    font-size: 13px;
    font-weight: 800;
    padding: 14px 0;
    border: none;
    border-radius: 5px;
    width: 340px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* reCAPTCHA */
.g-recaptcha {
    transform: scale(1);
    transform-origin: 0 0;
}


#testimonials {
    position: relative;
    background: #f5ae6c;
    overflow: hidden;
    padding: 60px 0;
}

#testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-image: url('metade-a2-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 0;
}

#testimonials .container {
    width: 100%;
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: start;
}

#testimonials #testimonials-text h2 {
    font-size: 16px;
    font-weight: 800;
    color: black;
}

#testimonials #testimonials-text h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--third-text-color);
    margin: 20px 0 40px 0;
}

#testimonials #testimonials-text p {
    font-size: 16px;
    font-weight: 600;
    color: black;
    line-height: 22px;
}

#testimonials #testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: flex-start;
}

#testimonials .testimonial-card {
    background: var(--primary-text-color);
    border-radius: 10px;
    padding: 30px 40px;
    width: 100%;
    max-width: 480px;
    flex: 1 1 300px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#testimonials .testimonial-card .quote-icon {
    width: 50px;
    height: auto;
}

#testimonials .testimonial-card p {
    font-size: 16px;
    color: black;
    font-weight: 600;
    line-height: 26px;
}

#testimonials .testimonial-card #testimonials-card-person {
    margin-top: auto;
}

#testimonials .testimonial-card #testimonials-card-person hr {
    width: 40px;
    height: 3px;
    background-color: var(--orage-background);
    border: none;
    margin: 0 0 10px 0;
}

#testimonials .testimonial-card #testimonials-card-person span {
    font-size: 15px;
    font-weight: 600;
    color: var(--orage-background);
}

#testimonials-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    transition: opacity 0.4s ease;
}

.testimonial-card {
    flex: 1 1 45%;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

#partners {
    background-color: #fff;
    padding: 60px 0;
}

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

#partners #partners-text {
    text-align: center;
    margin-bottom: 60px;
}

#partners #partners-text h2 {
    font-size: 16px;
    font-weight: 800;
    color: black;
}

#partners #partners-text h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--third-text-color);
    margin: 20px 0 30px 0;
}

#partners #partners-text p {
    font-size: 16px;
    font-weight: 600;
    color: black;
    line-height: 22px;
}

#partners #partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    width: 100%;
    align-items: center;
    justify-items: center;
}

#partners #partners-logos img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#partners #partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

#safety-and-quality {
    background-color: var(--primary-text-color);
}

#safety-and-quality .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}


#safety-and-quality #logo {
    width: 250px;
    height: auto;
}

#safety-and-quality #safety-and-quality-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--orage-background);
    text-wrap: wrap;
}

#safety-and-quality #safety-and-quality-text p {
    font-size: 16px;
    font-weight: 500;
    color: black;
    line-height: 28px;
    text-wrap: wrap;
}

#safety-and-quality #safety-and-quality-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

#safety-and-quality #safety-and-quality-images img {
    width: 360px;
    flex: 1 1 250px;
    height: auto;
}

#safety-and-quality #quality-seals {
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

#safety-and-quality #quality-seals .divider {
    width: 100%;
    height: 1px;
    background-color: var(--orage-background);
    border: none;
    margin: 0 auto 50px auto;
}

#safety-and-quality #quality-seals h3 {
    color: var(--orage-background);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 80px;
}

#safety-and-quality #quality-seals .seal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
}

#safety-and-quality #quality-seals .seal-list img {
    width: 175px;
    height: auto;
    object-fit: contain;
}


#frequently-asked-questions {
    background-color: var(--dark-blue-background);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

#frequently-asked-questions::before,
#frequently-asked-questions::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
}

#frequently-asked-questions::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

#frequently-asked-questions::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

#frequently-asked-questions .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    z-index: 1;
}

#frequently-asked-questions #frequently-asked-questions-text h2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--orage-background);
}

#frequently-asked-questions #frequently-asked-questions-text h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-text-color);
    margin: 0;
}

.faq {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #010710;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: transparent;
    border: none;
    width: 100%;
    padding: 40px;
    color: var(--orage-background);
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    color: var(--primary-text-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 40px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 10px 0 30px 0;
    line-height: 26px;
}

.faq-answer-list ul {
    color: var(--primary-text-color);
}

.faq-item.open .faq-answer {
    max-height: 1000px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

#footer {
    background-color: var(--orage-background);
    padding: 30px 0;
}

#footer .container {
    margin: 0 auto;
    padding: 0 24px;
    max-width: 1200px;
}

#footer #footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
}

#footer #footer-separator {
    width: 100%;
    height: 1px;
    background-color: var(--primary-text-color);
    border: none;
    margin: 10px 0;
}

#footer #footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

#footer #footer-content #footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--primary-text-color);
    flex: 1;
    min-width: 250px;
}

#footer #footer-content #footer-left h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-text-color);
    margin-bottom: 15px;
}

#footer #footer-content #footer-left p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
}

#footer #footer-content #footer-center {
    flex: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    min-width: 400px;
}

#footer #footer-content #footer-center p {
    font-size: 16px;
    font-weight: 500;
    text-align: start;
    color: var(--primary-text-color);
    margin-bottom: 12px;
    line-height: 24px;
}

#footer #footer-content #footer-center .footer-instagram {
    display: flex;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}


#footer #footer-content #footer-center .footer-instagram i {
    font-size: 20px;
    margin-right: 10px;
}

#footer #footer-content #footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

#footer #footer-content #footer-right .footer-badge {
    width: 150px;
    height: auto;
    object-fit: contain;
}



@media (max-width: 768px) {
    #nav-header {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }

    #logo {
        width: 180px;
    }

    #btn-orcamento {
        font-size: 12px;
        padding: 12px 20px;
    }

    #intro {
        height: auto;
        padding: 60px 0 40px;
        text-align: start;
    }

    #container {
        margin-top: 80px;
        padding: 0 20px;
    }

    #intro #intro-text {
        align-items: start;
    }

    #intro #intro-text h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    #intro #intro-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    #intro #intro-text #btn-intro {
        font-size: 13px;
        padding: 12px 20px;
    }

    #who-is-a2 #who-is-a2-text h3 {
        font-size: 40px;
        text-align: center;
    }

    #who-is-a2 #who-is-a2-video {
        height: 400px;
    }

    #who-we-serve-item #title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    #who-we-serve-item #subtitle {
        font-size: 17px;
    }

    #who-we-serve-items {
        flex-direction: column;
        align-items: center;
    }

    #who-we-serve-item {
        align-items: center;
        text-align: center;
    }

    #who-we-serve-text-block {
        align-items: center;
        text-align: center;
        width: auto;
    }

    #who-we-serve-item img {
        align-self: center;
    }


    #who-we-serve-divider {
        width: 50%;
        height: 2px;
        background-color: #2F488E;
        margin: 0;
    }

    #services {
        padding: 0;
    }

    #services::after {
        content: none;
        background-color: none;
    }

    /* #services #services-image-mobile {
        display: none;
    } */

    #services .container {
        width: 100%;
        padding: 40px 20px;
    }

    #services #services-button {
        width: 100%;
    }

    #services #services-text h3 {
        font-size: 28px;
        line-height: 1.4;
    }

    #services #services-list ul {
        font-size: 16px;
        line-height: 1.6;
    }

    #services #services-list ul li {
        margin-bottom: 10px;
    }

    #services #services-button {
        font-size: 13px;
        width: 90%;
    }

    #benefits #benefits-text h3 {
        font-size: 40px;
    }

    #benefits #benefits-specifications-list {
        grid-template-columns: 1fr;
    }

    #payback #payback-graphic img {
        width: 40rem;
    }

    #payback #payback-text h3 {
        font-size: 40px;
    }

    #economy br {
        display: none;
    }

    #economy #economy-text button {
        padding: 20px 20px;
    }

    #our-projects #our-projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .project-card.tall,
    .project-card.wide,
    .project-card.tall-vertical {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    #contact br {
        display: none;
    }

    #contact #contact-text h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-group,
    .full-width,
    .two-thirds,
    .one-third {
        width: 100%;
        flex: 1 1 100%;
        margin-left: 0 !important;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .submit-button {
        width: 100%;
        max-width: 100%;
    }

    /* reCAPTCHA responsivo */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }

    #testimonials-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%;
    }

    #partners br {
        display: none;
    }

    #partners #partners-text h3 {
        font-size: 32px;
    }

    #partners #partners-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    #partners #partners-logos img {
        max-width: 150px;
    }

    #safety-and-quality br {
        display: none;
    }

    #safety-and-quality #logo {
        width: 200px;
    }

    #safety-and-quality #safety-and-quality-text h2 {
        font-size: 40px;
    }

    #safety-and-quality #quality-seals h3 {
        margin-bottom: 40px;
    }

    #safety-and-quality #safety-and-quality-images {
        justify-content: center;
        gap: 20px;
    }

    #safety-and-quality #safety-and-quality-images img {
        max-width: 300px;
    }

    .faq-question {
        padding: 30px;
    }

    .faq-answer {
        padding: 0 30px;
    }

    #footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        flex-direction: row;
        justify-content: center;
    }

    .footer-badge {
        width: 100px;
    }

    #footer #footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer #footer-content #footer-left,
    #footer #footer-content #footer-center,
    #footer #footer-content #footer-right {
        width: 100%;
        min-width: unset;
        align-items: flex-start;
        text-align: left;
    }

    #footer #footer-content #footer-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 16px;
    }

    #footer #footer-content #footer-right {
        align-items: flex-start;
        margin-top: 16px;
    }

    #footer #footer-content #footer-right .footer-badge {
        width: 120px;
    }
}


@media (max-width: 480px) {
    #logo {
        width: 170px;
    }

    #intro #intro-text h1 {
        font-size: 24px;
    }

    #intro #intro-text p {
        font-size: 14px;
    }

    #btn-orcamento {
        font-size: 11px;
        padding: 9px 15px;
    }

    #services #services-button {
        padding: 15px 10px;
    }

    #intro #intro-text #btn-intro {
        font-size: 11px;
        padding: 9px 15px;
    }

    #economy #economy-text #economy-button {
        font-size: 13px;
        padding: 15px 25px;
    }

    #who-is-a2 #who-is-a2-text h3 {
        font-size: 30px;
    }


    #payback #payback-graphic img {
        display: none;
    }

    #economy #energy-text button {
        font-size: 13px;
        padding: 20px 1px;
    }

    /* reCAPTCHA extra pequeno para mobile */
    /* .g-recaptcha {
        transform: scale(0.75);
        transform-origin: 0 0;
    } */
}