/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(23, 103, 148, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 103, 148, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #176794;
    border: 2px solid #176794;
}

.btn-secondary:hover {
    background: #176794;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #176794;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #176794;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-cta {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px; /* Aumentado de 120px para 160px */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
    margin-top: 1rem; /* Adiciona um respiro de 32px acima do título */
}

.text-accent {
    color: #176794;
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 500;
}

.feature-item i {
    color: #176794;
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #176794;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Transformations Section */
.transformations {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #203748 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.transformations::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/brick-wall.png');
    opacity: 0.5;
    z-index: -1;
}
.transformations .section-title,
.transformations .section-description {
    color: white;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-8px);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e2e8f0;
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services .swiper-container {
    padding: 30px 0 50px 0; /* Aumentado o espaço no topo para 30px */
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%; /* Garante que todos os cards preencham a altura do slide */
    display: flex;
    flex-direction: column; /* Organiza os itens em uma coluna */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border-color: #176794; /* Mantém a borda do card popular */
}

/* Mantém a tag 'Most Popular' estilizada */
.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #176794;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid white;
    line-height: 1;
    z-index: 2;
}

/* Título do card */
.service-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 0 0 1rem 0; /* Margem apenas na parte inferior */
    text-align: left;
}

/* Imagem do card (com altura aumentada) */
.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* Parágrafo de descrição */
.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Lista de características (features) */
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* ESSA É A MÁGICA: faz a lista crescer para preencher o espaço */
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Botão do card */
.service-card-btn {
    width: 100%;
    margin-top: auto; /* Garante que o botão fique sempre no final */
    padding: 12px;
    font-size: 0.9rem;
    text-align: center;
}

/* --- FIM DA CORREÇÃO --- */

/* Carousel Styles */
.services-carousel {
    overflow: hidden; 
    position: relative;
}

.swiper-pagination-bullet {
    background: #ccc;
}

.swiper-pagination-bullet-active {
    background: #176794;
}

.swiper-button-next, .swiper-button-prev {
    color: #176794;
    background: none;
    width: 44px;
    height: 44px;
    transition: transform 0.2s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.2);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}


/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-image: url('../assets/fundowhychooseus.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 35, 50, 0.85); /* Azul Meia-Noite com opacidade */
    z-index: -1;
}

.why-us .section-header .section-title,
.why-us .section-header .section-description {
    color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-us-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.why-us-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-us-icon i {
    color: white;
    width: 32px;
    height: 32px;
}

.why-us-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6b7280;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Patterns Section - NEW ARCHITECTURAL DESIGN */
.patterns {
    padding: 80px 0;
    background-color: #111827; /* Fundo quase preto */
    background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png'); /* Textura de concreto escuro */
    overflow: hidden;
    position: relative;
}

.patterns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(31, 41, 55, 0.1) 0%, rgba(17, 24, 39, 0.8) 90%);
    z-index: 1;
}

.patterns .container, .patterns .patterns-carousel-container {
    position: relative;
    z-index: 2;
}

.patterns .section-header .section-title,
.patterns .section-header .section-description {
    color: white;
}

.patterns-carousel-container {
    padding: 2rem 0;
}

.patterns-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem; /* Espaço para a sombra */
}

.pattern-card {
    background-color: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.pattern-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.pattern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pattern-card:hover .pattern-image img {
    transform: scale(1.05);
}

.pattern-info {
    padding: 1.5rem;
    text-align: center;
    background-color: #1f2937;
}

.pattern-name {
    color: #fbbf24; /* Dourado */
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.pattern-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.patterns-carousel .swiper-wrapper {
    transition-timing-function: linear;
}

/* Reviews Section - FINAL WHITE MARBLE & GOLD DESIGN */
.reviews {
    padding: 100px 0;
    background-color: #f8fafc; /* Cor de fundo de segurança */
    background-image: url('https://www.transparenttextures.com/patterns/white-wall.png'); /* Textura sutil de mármore/parede branca */
    position: relative;
    overflow: hidden;
}

.reviews .section-header .section-title,
.reviews .section-header .section-description {
    color: #1f2937; /* Texto escuro para o fundo claro */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.7); /* Fundo branco semitransparente */
    backdrop-filter: blur(10px); /* Efeito de vidro fosco sobre o mármore */
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-top: 5px solid #fbbf24; /* Destaque em Ouro Brilhante */
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Sombra suave e elegante */
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Ícone de aspas como uma marca d'água sutil */
.review-card::before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04); /* Cor bem suave, quase invisível */
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.star-filled {
    color: #f59e0b; /* Dourado um pouco mais escuro para contraste */
    width: 20px;
    height: 20px;
}

.review-text {
    font-style: normal; /* Remove o itálico para um look mais limpo */
    color: #4a5568; /* Cinza Ardósia para leitura confortável */
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Separador sutil */
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mantendo o avatar azul, como um ponto de cor da marca */
.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(23, 103, 148, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937; /* Texto principal escuro */
}

.author-location {
    font-size: 0.875rem;
    color: #6b7280; /* Texto secundário */
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #f8fafc;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-us-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-us-text .section-title {
    text-align: left;
}

.about-us-text p {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-question:hover {
    color: #176794;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #6b7280;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.quote-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.quote-feature i {
    color: #176794;
    width: 20px;
    height: 20px;
}

.quote-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 3px 15px rgba(251, 191, 36, 0.4); /* Sombra dourada suave */
    animation: pulse-gold 2.5s infinite; /* Aplica a animação de pulsação */
}

.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #176794;
    box-shadow: 0 0 0 3px rgba(23, 103, 148, 0.1);
}

.file-input {
    display: none;
}

.file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-input-label:hover {
    border-color: #176794;
    background: #e8f0f5;
}

.file-input-label i {
    color: #6b7280;
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.file-input-label span {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.file-input-label small {
    color: #6b7280;
    font-size: 0.875rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.privacy-note i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Quote Section Map */
.quote-map {
    margin-top: 2rem;
    border-radius: 12px; /* <-- Arredonda aqui */
    overflow: hidden;    /* <-- Força o mapa a respeitar o arredondamento */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quote-map iframe {
    display: block;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    width: 20px;
    height: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.contact-value {
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
}

.contact-value:hover {
    color: #176794;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: #e5e7eb;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-areas h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.area-group h4 {
    color: #176794;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    color: #6b7280;
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.areas-note {
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.areas-note a {
    color: #176794;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #176794;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges span {
    background: #374151;
    color: #d1d5db;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* SMS Float */
.sms-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #176794 0%, #114e75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(23, 103, 148, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none; /* Garante que não haja sublinhado */
}

.sms-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(23, 103, 148, 0.4);
}

.sms-float i {
    color: white;
    width: 28px;
    height: 28px;
}

/* Message Modal */
.message-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.message-modal.show {
    display: flex;
}

.message-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.message-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.message-icon i {
    color: white;
    width: 40px;
    height: 40px;
}

.message-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.message-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    /* 1. Ajusta o contêiner principal para o alinhamento correto */
    .header-content {
        justify-content: flex-start; /* ALINHA TUDO À ESQUERDA INICIALMENTE */
        gap: 16px; /* Define o espaço entre o botão e o menu */
    }

    /* 2. Ajusta o contêiner do logo e empurra o resto para a direita */
    .header .logo {
        margin-right: auto; /* EMPURRA o botão e o menu para a direita */
        gap: 10px;
    }

    /* 3. Força a exibição do nome da empresa */
    .header .logo-text {
        display: block !important;
        font-size: 1rem;
        line-height: 1.1;
        color: #1f2937;
    }

    /* 4. Ajusta o botão */
    .header .btn-primary {
        padding: 8px 12px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    /* --- FIM DA CORREÇÃO --- */

    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .transformations-grid,
    .why-us-grid,
    .process-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        width: 24px;
        height: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25
}

/* Animação de Pulsação para o Título do Formulário */
@keyframes pulse-gold {
    0% {
        transform: scale(1);
        text-shadow: 0 3px 15px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.03); /* Aumenta levemente o tamanho */
        text-shadow: 0 5px 25px rgba(251, 191, 36, 0.6); /* Intensifica a sombra */
    }
    100% {
        transform: scale(1);
        text-shadow: 0 3px 15px rgba(251, 191, 36, 0.4);
    }
}