/* ============================================
   HOME PAGE STYLES - Escritório Vilas Boas
   ============================================ */

:root {
    --primary: #1A365D;
    --secondary: #2D5A88;
    --accent: #C8A977;
    --text: #333333;
    --text-light: #718096;
    --background: #ffffff;
    --background-alt: #F7FAFC;
    --max-width: 1280px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #B69865;
}

/* Áreas de Atuação Section */
.areas-atuacao {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.areas-atuacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.areas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.areas-header {
    text-align: center;
    margin-bottom: 40px;
}

.areas-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
    position: relative;
}

.areas-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.areas-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    color: white;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-content {
    text-align: center;
}

.area-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-align: center;
}

.area-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    text-align: center;
}

.area-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area-benefits li {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    text-align: left;
    width: auto;
}

.area-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1rem;
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.area-link svg {
    transition: transform 0.3s ease;
}

.area-link:hover {
    color: var(--accent);
}

.area-link:hover svg {
    transform: translateX(4px);
}

/* Responsividade para Áreas de Atuação */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .areas-header h2 {
        font-size: 2.2rem;
    }
    
    .areas-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .areas-atuacao {
        padding: 40px 0;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .areas-header h2 {
        font-size: 1.8rem;
    }
    
    .areas-header p {
        font-size: 1rem;
    }
    
    .area-card {
        padding: 1.2rem;
    }
    
    .areas-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .areas-container {
        padding: 0 0.75rem;
    }
    
    .areas-header h2 {
        font-size: 1.6rem;
    }
    
    .area-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* CTA Section */
.cta {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 2.8rem 0;
}

.cta h2 {
    color: white;
    margin-bottom: 0.7rem;
}

.cta p {
    margin-bottom: 1.4rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Carousel Styles */
.carousel {
    width: 100%;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
    min-height: clamp(280px, 35vw, 400px);
    max-height: 400px;
}

/* Lazy loading para imagens do carrossel */
.carousel-lazy-img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    min-height: clamp(280px, 35vw, 400px);
    max-height: 400px;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    min-height: clamp(280px, 35vw, 400px);
    max-height: 400px;
}

.carousel-image {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: clamp(280px, 35vw, 400px);
    max-height: 400px;
    height: 100%;
}

.carousel-image picture,
.carousel-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.carousel-image img {
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.carousel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
}

.carousel-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: var(--max-width);
    padding: 0 20px;
    z-index: 2;
}

.carousel-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.carousel-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.carousel-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--secondary);
    color: white;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: white;
    color: var(--primary);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 1280px) {
    .carousel {
        width: 100%;
    }
    
    .carousel-content {
        left: 5%;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 350px;
    }
    
    .carousel-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 0 15px;
    }
    
    .carousel-content h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .carousel-content p {
        font-size: 0.95em;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .carousel-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 600px) {
    .carousel { 
        height: 300px;
    }
    
    .carousel-content h2 {
        font-size: 1.5em;
        margin-bottom: 12px;
    }

    .carousel-content p {
        font-size: 0.9em;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 280px;
    }
    
    .carousel-content h2 {
        font-size: 1.3em;
    }
    
    .carousel-content p {
        font-size: 0.85em;
        margin-bottom: 15px;
    }
    
    .carousel-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track { transition: none !important; }
    .carousel-button, .carousel-nav, .indicator { transition: none !important; }
}

/* Card Urgência */
.urgent-card {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.urgent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.urgent-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.urgent-card-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.44rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.96rem;
    line-height: 1.3;
}

.urgent-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #B69865 100%);
    color: white;
    padding: 0.6rem 1.6rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(200, 169, 119, 0.3);
    cursor: pointer;
    font-family: inherit;
}

.urgent-cta-button:hover {
    background: linear-gradient(135deg, #B69865 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 169, 119, 0.4);
}

@media (max-width: 768px) {
    .urgent-card {
        height: 144px;
    }
    
    .urgent-card-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .urgent-cta-button {
        padding: 0.56rem 1.44rem;
        font-size: 0.855rem;
    }
}

@media (max-width: 480px) {
    .urgent-card {
        height: 128px;
    }
    
    .urgent-card-content {
        padding: 0 1.5rem;
    }
    
    .urgent-card-content h2 {
        font-size: 1.04rem;
        margin-bottom: 0.72rem;
    }
    
    .urgent-cta-button {
        padding: 0.52rem 1.2rem;
        font-size: 0.81rem;
    }
}

/* Questionário Urgente */
.urgent-questionnaire {
    width: 100%;
    background: #ffffff;
    padding: 1.2rem;
    margin: 0 auto;
    max-width: 800px;
}

.urgent-questionnaire-container {
    display: grid;
    gap: 0.8rem;
}

.urgent-progress {
    display: grid;
    gap: 0.3rem;
}

.urgent-progress-track {
    width: 100%;
    height: 4px;
    background: #e0e7f3;
    border-radius: 2px;
    overflow: hidden;
}

.urgent-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.urgent-questionnaire-form {
    display: grid;
    gap: 0.8rem;
}

.urgent-step {
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid #dce4f7;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.urgent-step-count {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6679a6;
    margin-bottom: 0.3rem;
}

.urgent-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d2d50;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.urgent-step-hint {
    font-size: 0.85rem;
    color: #5b6b85;
    margin: 0 0 0.7rem 0;
    line-height: 1.4;
}

.urgent-step input[type="text"],
.urgent-step select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #d6dff2;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.urgent-step input[type="text"]:focus,
.urgent-step select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.15);
}

.urgent-option-group {
    display: grid;
    gap: 0.6rem;
}

.urgent-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #d6dff2;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.urgent-option:hover {
    background: #f7f9fc;
    border-color: var(--primary);
}

.urgent-option input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.urgent-option span {
    font-size: 0.9rem;
    color: #1d2d50;
    font-weight: 500;
    line-height: 1.3;
}

.urgent-step-error {
    margin: 0;
    color: #b43d3d;
    font-size: 0.85rem;
}

.urgent-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
}

.urgent-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1 1 auto;
    min-width: 150px;
}

.urgent-button--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.urgent-button--ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid #c9d6f3;
}

.urgent-button--cancel {
    background: transparent;
    color: #b43d3d;
    border: 1px solid #ffb3b3;
}

.urgent-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26, 54, 93, 0.28);
}

.urgent-button--ghost:hover {
    background: #f7f9fc;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
}

.urgent-button--cancel:hover {
    background: #ffe3e3;
    border-color: #b43d3d;
    box-shadow: 0 4px 12px rgba(180, 61, 61, 0.15);
}

@media (max-width: 768px) {
    .urgent-questionnaire {
        padding: 1rem;
    }
    
    .urgent-questionnaire-container {
        gap: 0.6rem;
    }
    
    .urgent-step {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .urgent-step h3 {
        font-size: 1.1rem;
    }
    
    .urgent-step-hint {
        font-size: 0.8rem;
    }
    
    .urgent-step input[type="text"],
    .urgent-step select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .urgent-option {
        padding: 0.65rem;
    }
    
    .urgent-option span {
        font-size: 0.85rem;
    }
    
    .urgent-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .urgent-step-actions {
        gap: 0.6rem;
        margin-top: 0.6rem;
    }
    
    .urgent-step-actions .urgent-button {
        flex: 1 1 100%;
    }
}

[hidden] {
    display: none !important;
}

/* Notícias Feed */
.noticias-feed {
  background: #fafbfc;
  padding: 3rem 0 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.noticias-feed-header {
  max-width: 1320px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.noticias-feed-todas {
  background: #1A365D;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 0 18px 18px 0;
  margin-left: 0;
  letter-spacing: 1px;
  display: inline-block;
  transform: skew(-15deg);
}

.noticias-feed-carousel {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 4rem;
}

.noticias-feed-track {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  width: 100%;
  padding-bottom: 1rem;
  transition: transform 0.5s ease-in-out;
}

.noticias-feed-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1A365D;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(26,54,93,0.15);
  opacity: 0.9;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noticias-feed-arrow.prev { left: 0; }
.noticias-feed-arrow.next { right: 0; }

.noticias-feed-arrow:hover { 
  background: #2D5A88; 
  color: #fff; 
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(26,54,93,0.25);
}

@media (max-width: 1200px) {
  .noticias-feed-track { gap: 1.2rem; }
}

@media (max-width: 768px) {
  .noticias-feed {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  
  .noticias-feed-header {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .noticias-feed-carousel {
    max-width: 100%;
    padding: 0 3rem;
  }
  
  .noticias-feed-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .noticias-feed-track {
    gap: 1rem;
  }
}

/* Mapa com carregamento controlado */
.mapa-container {
  margin-top: 2rem;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: #f7fafc;
  min-height: clamp(400px, 45vw, 620px);
  position: relative;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(400px, 45vw, 620px);
  display: block;
  border: 0;
}

.mapa-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.8rem;
  background: linear-gradient(135deg, rgba(26,54,93,0.92), rgba(33,71,118,0.88));
  color: #fff;
}

.mapa-button {
  background: #25d366;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  color: #1a365d;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(13,153,71,0.35);
  transition: transform 0.2s ease;
}

.mapa-button:hover {
  transform: translateY(-1px);
}

.mapa-placeholder small {
  opacity: 0.85;
}

/* Modal de Pergunta Cliente - Home */
.home-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.home-modal.active {
    display: flex;
}

.home-modal-content {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.15);
    text-align: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-modal-content h3 {
    font-size: 1.25rem;
    color: #1A365D;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.home-modal-content p {
    font-size: 0.9rem;
    color: #4A5568;
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.4;
}

.home-modal-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-modal-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.home-modal-btn--cliente {
    background-color: #1A365D;
    color: white;
}

.home-modal-btn--cliente:hover {
    background-color: #2D5A88;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.home-modal-btn--nao-cliente {
    background-color: #C8A977;
    color: white;
}

.home-modal-btn--nao-cliente:hover {
    background-color: #B69865;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 169, 119, 0.3);
}

.home-modal-btn--fechar {
    background-color: #E2E8F0;
    color: #4A5568;
    margin-top: 0.8rem;
}

.home-modal-btn--fechar:hover {
    background-color: #CBD5E0;
}

@media (max-width: 768px) {
    .home-modal-content {
        padding: 1.2rem;
    }
    
    .home-modal-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .home-modal-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .home-modal-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .home-modal-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .home-modal-btn--fechar {
        margin-top: 0.6rem;
    }
}

/* Remover espaço entre mapa e rodapé */
body:has(.mapa-container) footer.site-footer {
    margin-top: 0 !important;
}

