/* Estilos Padrão (Desktop) */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-info .container h2{
    text-align: center;
}

header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-links li {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #fff;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
    list-style: none;
    padding: 10px 0;
}

.dropdown-content li {
    padding: 10px 20px;
}

.dropdown-content li a {
    color: #333;
    font-weight: 500;
}

.dropdown-content li a:hover {
    background-color: #f7e7c2;
    color: #78663a;
    border-radius: 5px;
}


.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}


.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo i {
    font-size: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.hero {
    background: #17120B;
    background: linear-gradient(90deg, rgba(23, 18, 11, 1) 0%, rgba(107, 83, 50, 1) 35%, rgba(181, 165, 111, 1) 100%);
    color: #fff;
    display: flex;
    position: relative;
    align-items: center;
    padding-left: 200px;
}

.hero-content {
    flex: 1;
    padding: 60px 0;
    height: 400px;
    min-height: 400px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}

.hero-content h1 span {
    color: #f7e8c3;
}

.hero-content p {
    font-size: 18px;
    margin: 0 0 30px;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 8px 3px 1pc black;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(209, 165, 33, 1) 0%, rgba(74, 47, 13, 1) 100%);
    color: white;
    font-family: "Montserrat", sans-serif;
}

.btn-secondary {
    background-color: white;
    color: #c9a84b;
    border: 1px solid #fff;
}

.hero-image {
    flex: 2;
    display: flex;
}

.hero-image img {
    max-height: 100%;
    max-width: 140%;
    width: 100%;
    object-fit: cover;
}

.features {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #f7e7c2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 40px;
    color: #333;
}

.feature-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    width: 70%;
    font-weight: bold;
    color: #666;
}

footer {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

#logo {
    height: 80px;
}

/* Estilos "Quem Somos" */
.about-us {
    background-color: #ffffff;
}

.about-hero {
    background-image: url('quemsomosbg.png');
    background-size: cover;
    background-position: -20px -100px;
    background-attachment: fixed;
    padding: 131.3px 0;
    padding-left: 200px;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    line-height: 1.5;
}

.about-content {
    padding: 60px 0;
}

.who-we-are {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.who-we-are-text {
    flex: 2;
}

.who-we-are-text h2 {
    font-size: 36px;
    color: #78663a;
    position: relative;
    margin-bottom: 20px;
}

.who-we-are-text h2 span {
    font-weight: 800;
}

.who-we-are-text p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: black;
    font-size: 16px;
    font-weight: 700;
    text-align: justify;
}

.who-we-are-text p span {
    color: #78663a;
}

.who-we-are-image {
    flex: 1;
    text-align: center;
}

.who-we-are-image img {
    max-width: 100%;
    border-radius: 10px;
}

.mission-vision-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m-v-v-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 50px;
    border: 5px solid #78663a;
}

.m-v-v-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #78663a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m-v-v-icon i {
    font-size: 30px;
    color: #fff;
}

.m-v-v-title {
    font-weight: bold;
    font-size: 20px;
    color: #78663a;
    margin-top: 5px;
}

.m-v-v-title .m-v-v-description {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    text-align: justify;
}

/* Estilos para a página de Serviços */
.services-hero {
    background-image: url('servicosbg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 131.3px 0;
    padding-left: 200px;
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.services-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    line-height: 1.5;
}

.service-detail {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
}

.service-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    flex: 1.5;
    padding: 0 40px;
}

.service-content h2 {
    font-size: 32px;
    color: #78663a;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    text-align: justify;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content ul {
    padding-left: 20px;
    list-style: none;
}

.service-content li {
    color: black;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    text-align: justify;
}

.service-content li::before {
    content: '\2713';
    color: #78663a;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* ====== PÁGINAS DE SERVIÇO ====== */

/* Banner do serviço */
.service-banner {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

/* Seção sobre o serviço */
.service-info {
    padding: 60px 20px;
    background-color: #fff;
}

.service-info h2 {
    color: #b89b4f; /* tom dourado AGE GOLD */
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-info p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Benefícios */
.service-benefits {
    background-color: #faf7f0;
    padding: 60px 20px;
    text-align: center;
}

.service-benefits h2 {
    color: #b89b4f;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2.2rem;
    color: #b89b4f;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #555;
    font-size: 1rem;
}

/* Botão final */
.service-cta {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, #b89b4f, #e0c98d);
}

.btn-contratar {
    background: #fff;
    color: #b89b4f;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contratar:hover {
    background: #b89b4f;
    color: #fff;
}


/* Estilos para a página de Simulação */
.simulation-hero {
    background-image: url('simulacaobg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 131.3px 0;
    padding-left: 200px;
    position: relative;
    color: #fff;
}

.simulation-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.simulation-hero p {
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    line-height: 1.5;
}

.simulation-form {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.simulation-form .container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.form-card, .result-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-card {
    flex: 3;
}

.result-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(23, 18, 11, 1) 0%, rgba(107, 83, 50, 1) 35%, rgba(181, 165, 111, 1) 100%);
    color: #fff;
}

.form-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.input-group input, .input-group select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .currency {
    position: absolute;
    left: 10px;
    font-weight: bold;
    color: #333;
}

.input-with-icon input {
    padding-left: 35px;
}

.form-info {
    font-size: 12px;
    color: #888;
}

.form-info p i {
    color: rgba(181, 165, 111, 1);
    margin-right: 5px;
}

.result-card .rate {
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.result-card .result-value p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.result-card .result-value .value {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-simulation {
    background-color: #D1A521;
    background: linear-gradient(90deg, rgba(209, 165, 33, 1) 0%, rgba(74, 47, 13, 1) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-simulation:hover {
    background: linear-gradient(90deg, rgba(74, 47, 13, 1) 0%, rgba(209, 165, 33, 1) 100%);
}

/* Estilos para a página de Contato */
.contact-hero {
    background-image: url('contatobg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 131.3px 0;
    padding-left: 200px;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    line-height: 1.5;
}

.contact-content {
    padding: 60px 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-container {
    flex: 2;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 32px;
    color: #78663a;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
}

.contact-info {
    flex: 1;
    background-color: #f7e7c2;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info h2 {
    font-size: 28px;
    color: #78663a;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.info-item i {
    color: #78663a;
    font-size: 24px;
}

.social-media {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    color: #78663a;
    font-size: 30px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #D1A521;
}


/* Media Queries */

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        padding-bottom: 20px;
    }
    .hero-content {
        height: auto;
        min-height: auto;
        padding: 40px 20px 20px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-image {
        flex: auto;
        width: 100%;
        max-width: 500px; 
    }
    .hero-image img {
        width: 100%;
        max-width: 100%;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-description {
        width: 90%;
    }

    /* Quem Somos */
    .about-hero {
        padding: 80px 20px;
        padding-left: 20px;
    }
    .about-hero p {
        width: 80%;
    }
    .who-we-are {
        flex-direction: column;
        text-align: center;
    }

    /* Serviços */
    .services-hero {
        padding: 80px 20px;
        padding-left: 20px;
    }
    .services-hero p {
        width: 80%;
    }
    .service-item, .service-item.reverse {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .service-content {
        padding: 20px;
    }

    /* Simulação */
    .simulation-form .container {
        flex-direction: column;
        gap: 20px;
    }
    .form-inputs {
        grid-template-columns: 1fr;
    }
    .result-card {
        padding: 20px;
    }

    /* Contato */
    .contact-content {
    flex-direction: row; 
    gap: 24px;
    }

    .contact-hero {
        padding: 80px 20px;
        padding-left: 20px;
    }

    .contact-hero p {
        width: 80%;
    }
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    .hero-content, .simulation-hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 3;
        width: 100%;
        text-align: center;
        padding: 40px 10px;


    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-buttons {
        align-items: center;
        flex-direction: column;
    }
    .hero-image{
        display: none;
        flex:0;
    }
    #img-hero{
        display:none;
        flex:0;
    }
    .btn {
        width: 100%;
        text-align: center;
    }

    /* Quem Somos */
    .about-hero h1 {
        font-size: 36px;
    }
    .about-hero p {
        width: 100%;
        font-size: 18px;
    }
    .who-we-are-text h2 {
        font-size: 28px;
    }

    /* Serviços */
    .services-hero h1 {
        font-size: 36px;
    }
    .services-hero p {
        width: 100%;
        font-size: 18px;
    }
    .service-content h2 {
        font-size: 24px;
    }

    /* Simulação */
    .simulation-hero h1 {
        font-size: 36px;
    }
    .simulation-hero p {
        width: 100%;
        font-size: 18px;
    }

    /* Contato */
    .contact-hero {
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 131.3px 0;
        position: relative;
    }

    .contact-form-container, .contact-info {
        width: 100%;
        padding: 20px;
        flex: 1 1 auto;
        min-width: auto;
    }
    .contact-content {
        flex-direction: column; 
        display: flex;
        align-items: center;
        gap: 24px;
    }
}