/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --color-green: #00B142;
    --color-dark-green: #01842D;
    --color-yellow: #FFC20E;
    --color-text: #333;
    --color-text-light: #fff;
    --color-background: #fff;
    --color-dark-background: #000;
    --font-main: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 700; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

a { text-decoration: none; color: inherit; }

/* --- COMPONENTES --- */
.cta-button, .cta-button-dark {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button { background-color: var(--color-green); color: var(--color-text-light); }
.cta-button:hover { background-color: var(--color-dark-green); }
.cta-button-dark { background-color: #333; color: var(--color-text-light); }
.cta-button-dark:hover { background-color: #555; }

/* --- CABEÇALHO --- */
.main-header {
    background-color: var(--color-background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: sticky; top: 0; z-index: 1000;
}
.logo-img{
    width: 150px;
}

.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; font-weight: 700; color: var(--color-green); }
.main-nav ul { list-style: none; display: flex; gap: 30px; }
.main-nav a { font-weight: 600; color: var(--color-text); }
.main-nav a:hover { color: var(--color-green); }
.header-cta {color: #000; padding: 10px 20px; border-radius: 5px; font-weight: 600; }


/* --- MENU MOBILE --- */
.mobile-nav-toggle { display: none; }
.mobile-nav { display: none; }

/* --- SEÇÃO HERO --- */
.hero-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/bkg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
}
.hero-text { max-width: 600px; }
.hero-text h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; }
.hero-text strong { color: var(--color-yellow); }
.hero-text p { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }

/* --- SEÇÃO SERVIÇOS --- */
.services-section { padding: 80px 0; }
.section-subtitle { display: block; text-align: center; margin-bottom: 40px; color: #777; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { border: 1px solid #eee; border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.service-card i { font-size: 2.5rem; color: var(--color-green); margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; }

/* --- SEÇÃO GALERIA --- */
.gallery-section {
    padding: 0; /* Removemos o padding para a galeria tocar as bordas */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px; /* Espaçamento entre as imagens */
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Efeito de zoom suave */
}

/* Classes para itens com tamanhos diferentes */
.gallery-item.tall {
    grid-row: span 2;
}
.gallery-item.wide {
    grid-column: span 2;
}
.gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-cta {
    background-color: var(--color-green);
    color: var(--color-text-light);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: span 2; /* Faz o CTA ocupar 2 colunas */
}
.gallery-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.gallery-cta p {
    margin-bottom: 25px;
}
.gallery-cta .cta-button {
    background-color: var(--color-text-light);
    color: var(--color-text);
}

/* Ajustes responsivos para a galeria */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr; /* Duas colunas em telas menores */
    }
    .gallery-item.tall,
    .gallery-item.wide,
    .gallery-item.big,
    .gallery-cta {
        grid-column: span 1; /* Todos os itens ocupam uma coluna */
        grid-row: span 1;
    }
    .gallery-item.big{
        grid-row: span 2;
    }
}
/* --- SEÇÃO SOBRE NÓS --- */
.about-section { padding: 80px 0; }
.about-section .container { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text h2 { text-align: left; }
.about-text ul { list-style: none; margin-top: 20px; }
.about-text li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-weight: 600; }
.about-text i { color: var(--color-green); }
.about-image { flex: 1; }
.about-image img { width: 100%; }

/* --- SEÇÃO CREDENCIADO (ATUALIZADO) --- */
.partner-section { 
    padding: 80px 0;
    background: linear-gradient(90deg, #008c30 0%, #00b142 100%); 
    color: var(--color-text-light); 
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 50px;
}

.partner-text {
    text-align: left;
}

.partner-logo {
    
    padding: 10px 15px;
    border-radius: 5px;
    max-width: 160px;
    margin-bottom: 25px;
}

.partner-section h3 { 
    font-size: 2.8rem; 
    margin-bottom: 15px; 
}

.partner-section p { 
    font-size: 1.1rem; 
    line-height: 1.7;
    margin-bottom: 30px; 
    max-width: 450px;
}

/* Novo estilo para botão de contorno */
.cta-button-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--color-text-light);
    border-radius: 50px;
    color: var(--color-text-light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-green);
}

.partner-image img {
    width: 100%;
    height: auto;
}

/* --- Ajuste Responsivo para a Seção --- */
@media (max-width: 768px) {
    .partner-grid {
        text-align: center;
    }
    
    .partner-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ... (Todo o código CSS anterior permanece o mesmo) ... */

/* --- SEÇÃO CLIENTES --- */
.clients-section { 
    padding: 80px 0; 
    background-color: #f7f7f7; /* Adiciona um fundo cinza claro para destacar */
}
.clients-slider .swiper-slide { 
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.clients-slider img { 
    max-height: 50px; 
    max-width: 150px; 
    width: auto; 
    filter: grayscale(100%); 
    opacity: 0.6; 
    transition: all 0.3s ease;
}
.clients-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ... (O restante do CSS permanece o mesmo) ... */

/* --- SEÇÃO ORÇAMENTO --- */
.quote-section { padding: 80px 0; background: var(--color-green); color: var(--color-text-light); }
.quote-section h2 { color: var(--color-text-light); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 15px; border-radius: 5px; border: 1px solid #ccc; font-family: var(--font-main); font-size: 1rem; }
.contact-form textarea { grid-column: 1 / -1; }
.contact-form button { grid-column: 1 / -1; justify-self: center; }

/* --- RODAPÉ --- */
.main-footer { padding-top: 60px; background-color: var(--color-dark-background); color: #aaa; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 40px; }
.footer-logo { font-size: 2rem; font-weight: 700; color: var(--color-green); margin-bottom: 15px; display: block; }
.footer-seal { height: 40px; }
.footer-col h4 { font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 20px; }
.footer-col p, .footer-col a { color: #aaa; line-height: 1.8; }
.footer-col a:hover { color: var(--color-text-light); }
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a { font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid #333; padding: 20px 0; text-align: center; font-size: 0.9rem; color: #777; }
.footer-bottom a { color: #aaa; }

.footer-logo{
    width: 150px;
}

/* --- ESTILOS DO ACORDEÃO (SOBRE NÓS) --- */
.accordion {
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.accordion-title h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.accordion-title i {
    color: var(--color-green);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Estilo quando o item está ativo/aberto */
.accordion-item.active .accordion-content {
    max-height: 200px; /* Altura suficiente para o conteúdo */
}

.accordion-item.active .accordion-title i {
    transform: rotate(180deg);
}

/* Remove a lista de bolinhas anterior */
.about-text ul {
    display: none;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .main-nav, .header-cta { display: none; }
    .mobile-nav-toggle { display: block; background: none; border: none; color: var(--color-green); font-size: 1.8rem; cursor: pointer; }
    .mobile-nav { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; width: 80%; max-width: 350px; height: 100vh; background-color: var(--color-dark-background); z-index: 2000; padding: 80px 40px; transform: translateX(100%); transition: transform 0.3s ease; }
    .mobile-nav.active { transform: translateX(0); }
    .mobile-nav .close-btn { position: absolute; top: 25px; right: 25px; color: var(--color-text-light); }
    .mobile-nav ul { list-style: none; }
    .mobile-nav li { margin-bottom: 30px; }
    .mobile-nav a { font-size: 1.5rem; font-weight: 700; color: var(--color-text-light); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-section .container { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .services-grid, .gallery-grid { grid-template-columns: 1fr; }
    .gallery-cta { grid-column: auto; grid-row: auto; }
    .contact-form { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
}

/* ... (Todo o seu CSS existente) ... */

/* --- ESTILOS DA PÁGINA SERVIÇOS (servicos.html) --- */

.page-hero-section {
    padding: 60px 0;
    background-color: var(--color-dark-green);
    color: var(--color-text-light);
    text-align: center;
}

.page-hero-section h1 {
    font-size: 2.8rem;
}

.detailed-services {
    display: grid;
    grid-template-columns: 1fr; /* Cada item ocupa a largura total */
}

.detailed-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* Inverte a ordem para itens ímpares para criar o zigue-zague */
.detailed-service-item:nth-child(odd) .detailed-service-image {
    order: 2;
}
.detailed-service-item:nth-child(odd) .detailed-service-text {
    order: 1;
}

.detailed-service-image {
    background-size: cover;
    background-position: center;
}

.detailed-service-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Fundos diferentes para os textos */
.detailed-service-item:nth-child(2) .detailed-service-text,
.detailed-service-item:nth-child(4) .detailed-service-text {
    background-color: var(--color-green);
    color: var(--color-text-light);
}
.detailed-service-item:nth-child(2) .cta-button-dark,
.detailed-service-item:nth-child(4) .cta-button-dark {
    background-color: var(--color-text-light);
    color: var(--color-text);
}

.detailed-service-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.detailed-service-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button-dark {
    background-color: #333;
    color: #fff;
}

/* Responsividade para a seção de serviços detalhados */
@media (max-width: 768px) {
    .detailed-service-item {
        grid-template-columns: 1fr; /* Uma única coluna no mobile */
    }

    .detailed-service-image {
        min-height: 250px;
        order: 1 !important; /* Imagem sempre primeiro no mobile */
    }

    .detailed-service-text {
        order: 2 !important; /* Texto sempre depois no mobile */
        align-items: center;
        text-align: center;
    }
}

/* --- HERO --- */
.page-hero-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://cdn.dwhitelabel.com/f7bfac2723454c4699da338a529de3e2/dms3rep/multi/electrician_inblue_overall.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
    text-align: center;
}

.page-hero-section h1 {
    font-size: 3rem;
}

/* --- INTRO SECTION --- */
.intro-section {
    padding: 70px 0;
}
.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
    font-size: 1rem;
}

/* --- SERVICES GRID --- */
.services-grid-section {
    padding-bottom: 80px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-background);
    border: 1px solid #e0e0e0;
    border-bottom: 7px solid var(--color-dark-green);
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--color-dark-green);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.service-card:hover .icon {
    color: var(--color-green);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* --- DETAILED SERVICES (ZIG-ZAG) --- */
.detailed-services {
    display: grid;
    grid-template-columns: 1fr;
}

.detailed-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    align-items: center;
}

.detailed-service-item:nth-child(even) .detailed-service-image {
    order: 2;
}
.detailed-service-item:nth-child(even) .detailed-service-text {
    order: 1;
    background: var(--color-green);
    height: 100%;
}

.detailed-service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.detailed-service-text {
    padding: 60px;
}

.detailed-service-text.bg-white {
    background-color: var(--color-background);
}

.detailed-service-text.bg-green {
    background: linear-gradient(90deg, #01842D 23%, #00B142 100%);
    color: var(--color-text-light);
}

.detailed-service-text .divider {
    width: 105px;
    height: 3px;
    background-color: var(--color-green);
    margin-bottom: 20px;
}
.detailed-service-text.bg-green .divider {
    background-color: var(--color-text-light);
}

.detailed-service-text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.detailed-service-text p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* --- CLIENTS SECTION --- */
.clients-section {
    background-color: white;
}
.clients-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.clients-section p {
    color: #555;
    margin-bottom: 40px;
}
.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.clients-grid img {
    max-height: 45px;
    max-width: 150px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.clients-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- QUOTE SECTION --- */
.quote-section {
    background-image: linear-gradient(rgba(0, 177, 66, 0.7), rgba(0, 177, 66, 0.7)), url('https://lirp.cdn-website.com/5ec50913/dms3rep/multi/opt/iStock-1444080180-2880w.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
}
.quote-section h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 2px solid var(--color-text-light);
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text-light);
}

.cta-button-outline{
    background: none;
}
.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
.contact-form option {
    background-color: var(--color-dark-green);
}
.contact-form textarea {
    height: 120px;
    resize: vertical;
}
.contact-form ::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.form-submit-button {
    grid-column: 1 / -1;
    justify-self: start;
    border: none;
    background: var(--color-text-light);
    color: var(--color-dark-green);
    padding: 14px 40px;
}
.form-submit-button:hover {
    opacity: 0.9;
    color: white;
}

/* --- ESTILOS DA PÁGINA "SOBRE NÓS" --- */

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.about-intro-section {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-intro-image {
    flex: 1 1 400px; /* Permite quebra em telas menores */
}

.about-intro-text {
    flex: 1 1 500px;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-intro-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.philosophy-section {
    background: linear-gradient(90deg, #01842d 45%, #00b142 100%);
    color: var(--color-text-light);
}

.philosophy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.philosophy-section .subtitle {
    margin-bottom: 40px;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-image {
    flex: 1 1 300px;
}

.philosophy-list {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px; /* Aumenta o espaçamento horizontal */
    list-style: none;
    text-align: left;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.philosophy-list i {
    font-size: 1.5rem;
}

.how-we-work-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.how-we-work-section .description {
    margin-bottom: 40px;
    color: #555;
    font-size: 1.1rem;
}

.work-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px; /* Aumenta o espaçamento horizontal */
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.work-lists ul {
    list-style: none;
}

.work-lists li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.2rem;
}

.work-lists i {
    color: var(--color-text-light);
    background: linear-gradient(90deg, #01842d 0%, #00b142 100%);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    flex-shrink: 0; /* Impede que o ícone encolha */
}

/* --- Ajustes Responsivos para a página "Sobre Nós" --- */

@media (max-width: 768px) {
    .about-intro-section {
        flex-direction: column;
        text-align: center;
    }
    .philosophy-content {
        flex-direction: column;
    }
    .philosophy-list, .work-lists {
        grid-template-columns: 1fr;
    }
    .philosophy-list {
        margin-top: 30px;
    }
}

/* --- ESTILOS DA PÁGINA "CONTATO" --- */

.section-padding {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Coluna de texto menor, mapa maior */
    gap: 50px;
    align-items: flex-start;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--color-text);
}

.contact-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details p i {
    color: var(--color-green);
    font-size: 1.2rem;
    width: 20px; /* Alinha os ícones */
    text-align: center;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.contact-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-text-light);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-social-icons a:hover {
    background-color: var(--color-dark-green);
}

.contact-map {
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.servicos{
    padding-bottom: 20px;
    text-align: center;
}

.contact-map iframe {
    border: 0;
    width: 100%;
    height: 350px;
}

.quote-section .quote-subtitle {
    max-width: 600px;
    margin: -15px auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Ajustes Responsivos para a página "Contato" --- */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }

    .contact-details h2 {
        font-size: 2rem;
    }
}