/* ============================================================
   VECTER SEGUROS — REDESIGN 2025
   Minimalista/Clean | Azul #1E5FA3 | Dourado #C8A020
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:        #1E5FA3;
  --azul-dark:   #154480;
  --azul-light:  #EBF2FB;
  --dourado:     #C8A020;
  --branco:      #FFFFFF;
  --cinza-f:     #F7F8FA;
  --cinza-e:     #E2E8F0;
  --cinza-m:     #718096;
  --cinza-d:     #2D3748;
  --texto:       #1A202C;
  --sombra:      0 4px 24px rgba(30,95,163,0.10);
  --sombra-h:    0 8px 32px rgba(30,95,163,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --trans:       0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', 'Segoe UI', sans-serif; font-size: 16px; color: var(--texto); background: var(--branco); line-height: 1.7; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.25; color: var(--cinza-d); }

/* ── Helpers ── */
.vt-section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dourado); margin-bottom: 12px; }
.vt-section-title { margin-bottom: 48px; }
.vt-section-title h2 { font-size: clamp(26px, 4vw, 40px); }
.vt-section-title p { font-size: 17px; color: var(--cinza-m); margin-top: 10px; max-width: 560px; }
.vt-section-title.text-center p { margin-left: auto; margin-right: auto; }

/* ── Botões ── */
.btn-vt { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; border: 2px solid transparent; transition: all var(--trans); text-decoration: none; }
.btn-vt-primary { background: var(--azul); color: var(--branco); border-color: var(--azul); }
.btn-vt-primary:hover { background: var(--azul-dark); border-color: var(--azul-dark); color: var(--branco); transform: translateY(-2px); box-shadow: var(--sombra-h); }
.btn-vt-gold { background: var(--dourado); color: var(--branco); border-color: var(--dourado); }
.btn-vt-gold:hover { background: #a8860f; border-color: #a8860f; color: var(--branco); transform: translateY(-2px); }
.btn-vt-outline { background: transparent; color: var(--branco); border-color: rgba(255,255,255,0.6); }
.btn-vt-outline:hover { background: var(--branco); color: var(--azul); border-color: var(--branco); }

/* ── WhatsApp float ── */
.vt-whatsapp { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 9999; transition: transform var(--trans); }
.vt-whatsapp:hover { transform: scale(1.1); color: #fff; }
#scrollUp { bottom: 96px !important; right: 32px; }

/* ── HEADER ── */
.vt-header { position: sticky; top: 0; z-index: 1000; background: var(--branco); box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.vt-topbar { background: var(--azul); padding: 9px 0; font-size: 13px; color: rgba(255,255,255,0.85); }
.vt-topbar .container { display: flex; justify-content: space-between; align-items: center; }
.vt-topbar-left, .vt-topbar-right { display: flex; gap: 20px; list-style: none; align-items: center; }
.vt-topbar-left li, .vt-topbar-right li { display: flex; align-items: center; gap: 6px; }
.vt-topbar a { color: rgba(255,255,255,0.9); }
.vt-topbar a:hover { color: #fff; }
.vt-navbar { padding: 16px 0; }
.vt-navbar .container { display: flex; align-items: center; justify-content: space-between; }
.vt-logo img { height: 84px; width: auto; }
.vt-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.vt-nav > li > a { padding: 8px 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: var(--cinza-d); border-radius: 8px; transition: all var(--trans); display: block; }
.vt-nav > li > a:hover, .vt-nav > li.active > a { color: var(--azul); background: var(--azul-light); }
.vt-nav .has-dropdown { position: relative; }
.vt-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--branco); border-radius: var(--radius); box-shadow: var(--sombra-h); min-width: 240px; padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--trans); z-index: 100; border: 1px solid var(--cinza-e); }
.vt-nav .has-dropdown:hover .vt-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.vt-dropdown li a { display: block; padding: 10px 16px; font-size: 14px; color: var(--cinza-d); border-radius: 8px; transition: all var(--trans); font-weight: 500; }
.vt-dropdown li a:hover { background: var(--azul-light); color: var(--azul); }
.vt-nav-cta { margin-left: 12px; }
.vt-nav-cta .btn-vt-primary { color: var(--branco) !important; background: var(--azul) !important; }
.vt-nav-cta .btn-vt-primary:hover { color: var(--branco) !important; background: var(--azul-dark) !important; }
.vt-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.vt-hamburger span { display: block; width: 24px; height: 2px; background: var(--cinza-d); border-radius: 2px; transition: all var(--trans); }

/* ── HERO ── */
.vt-hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0d3b6e 0%, #1E5FA3 55%, #2d7dd2 100%); }
.vt-hero-bg { position: absolute; inset: 0; background-image: url('../images/bg/living_room.jpg'); background-size: cover; background-position: center; opacity: 0.15; }
.vt-hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.vt-hero-content { position: relative; z-index: 2; padding: 80px 0; width: 100%; }
.vt-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 6px 18px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.vt-hero-eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--dourado); border-radius: 50%; flex-shrink: 0; }
.vt-hero h1 { font-size: clamp(36px, 5.5vw, 64px); color: var(--branco); line-height: 1.1; margin-bottom: 20px; }
.vt-hero h1 span { color: var(--dourado); }
.vt-hero-p { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.vt-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.vt-hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vt-hero-card { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); border-radius: var(--radius); padding: 22px 18px; color: var(--branco); transition: all var(--trans); }
.vt-hero-card:hover { background: rgba(255,255,255,0.17); transform: translateY(-4px); }
.vt-hero-card i { font-size: 28px; color: var(--dourado); margin-bottom: 10px; display: block; }
.vt-hero-card h5 { font-size: 14px; font-weight: 600; color: var(--branco); margin: 0; }

/* ── STATS ── */
.vt-stats { background: var(--branco); padding: 36px 0; border-bottom: 1px solid var(--cinza-e); }
.vt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.vt-stat { text-align: center; padding: 0 16px; }
.vt-stat + .vt-stat { border-left: 1px solid var(--cinza-e); }
.vt-stat h3 { font-size: 40px; color: var(--azul); font-weight: 800; line-height: 1; }
.vt-stat p { font-size: 14px; color: var(--cinza-m); margin-top: 6px; font-weight: 500; }

/* ── SERVIÇOS ── */
.vt-services { padding: 96px 0; background: var(--cinza-f); }
.vt-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.vt-service-card { background: var(--branco); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--cinza-e); transition: all var(--trans); position: relative; overflow: hidden; display: block; color: inherit; }
.vt-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--azul), var(--dourado)); transform: scaleX(0); transition: transform var(--trans); }
.vt-service-card:hover::before { transform: scaleX(1); }
.vt-service-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-h); border-color: transparent; color: inherit; }
.vt-service-icon { width: 64px; height: 64px; background: var(--azul-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--azul); transition: all var(--trans); }
.vt-service-card:hover .vt-service-icon { background: var(--azul); color: var(--branco); }
.vt-service-card h5 { font-size: 15px; font-weight: 700; color: var(--cinza-d); margin-bottom: 10px; }
.vt-service-card p { font-size: 13.5px; color: var(--cinza-m); line-height: 1.6; }

/* ── SOBRE ── */
.vt-about { padding: 96px 0; background: var(--branco); }
.vt-about h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
.vt-about-text p { color: var(--cinza-m); margin-bottom: 16px; font-size: 16.5px; }
.vt-about-list { list-style: none; margin-bottom: 32px; }
.vt-about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--cinza-e); font-size: 15px; color: var(--cinza-d); }
.vt-about-list li:last-child { border-bottom: none; }
.vt-about-list li i { color: var(--azul); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.vt-about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sombra-h); height: 100%; min-height: 400px; }
.vt-about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── CALLBACK ── */
.vt-callback { background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul) 100%); padding: 80px 0; }
.vt-callback-inner { background: var(--branco); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--sombra-h); }
.vt-callback-inner h2 { color: var(--cinza-d); margin-bottom: 8px; }
.vt-callback-inner p { color: var(--cinza-m); margin-bottom: 28px; }
.vt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vt-form-group { display: flex; flex-direction: column; gap: 6px; }
.vt-form-group.full { grid-column: 1 / -1; }
.vt-form-group label { font-size: 13px; font-weight: 600; color: var(--cinza-d); }
.vt-form-group input, .vt-form-group textarea { padding: 12px 16px; border: 1.5px solid var(--cinza-e); border-radius: 10px; font-size: 15px; color: var(--texto); font-family: inherit; transition: border-color var(--trans), box-shadow var(--trans); background: var(--branco); }
.vt-form-group input:focus, .vt-form-group textarea:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(30,95,163,0.10); }
.vt-form-group textarea { resize: vertical; min-height: 120px; }

/* ── DEPOIMENTOS ── */
.vt-testimonials { padding: 96px 0; background: var(--cinza-f); }
.vt-test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 16px; }
.vt-test-card { background: var(--branco); border-radius: var(--radius); padding: 32px; border: 1px solid var(--cinza-e); transition: all var(--trans); position: relative; }
.vt-test-card:hover { box-shadow: var(--sombra-h); transform: translateY(-4px); border-color: transparent; }
.vt-test-card::before { content: '\201C'; position: absolute; top: 20px; right: 24px; font-size: 72px; color: var(--azul-light); font-family: Georgia, serif; line-height: 1; }
.vt-stars { color: var(--dourado); font-size: 14px; margin-bottom: 16px; }
.vt-test-text { font-size: 15px; color: var(--cinza-m); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.vt-test-author { display: flex; align-items: center; gap: 14px; }
.vt-test-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--azul-light); }
.vt-test-avatar-p { width: 48px; height: 48px; border-radius: 50%; background: var(--azul); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.vt-author-name { font-weight: 700; font-size: 15px; color: var(--cinza-d); }
.vt-author-role { font-size: 13px; color: var(--cinza-m); }

/* ── CTA ── */
.vt-cta { padding: 96px 0; background: linear-gradient(135deg, #0d3b6e 0%, var(--azul) 100%); text-align: center; position: relative; overflow: hidden; }
.vt-cta::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.vt-cta-inner { position: relative; z-index: 2; }
.vt-cta h2 { color: var(--branco); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.vt-cta p { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.vt-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ── */
.vt-footer { background: #0d1f35; color: rgba(255,255,255,0.7); }
.vt-footer-cols { padding: 64px 0 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.vt-footer-brand img { height: 44px; width: auto; opacity: 0.9; }
.vt-footer-logo { height: 48px; width: auto; max-width: 180px; background: #ffffff; border-radius: 12px; padding: 6px 10px; box-shadow: 0 8px 18px rgba(0,0,0,0.16); }
.vt-footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; }
.vt-footer-social { display: flex; gap: 10px; }
.vt-footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 15px; transition: all var(--trans); }
.vt-footer-social a:hover { background: var(--azul); color: var(--branco); }
.vt-footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--branco); margin-bottom: 20px; }
.vt-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vt-footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--trans); }
.vt-footer-links a:hover { color: var(--branco); }
.vt-footer-newsletter { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 0; display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: center; }
.vt-footer-newsletter strong { display: block; font-size: 16px; font-weight: 700; color: var(--branco); margin-bottom: 6px; }
.vt-footer-newsletter p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }
.vt-newsletter-form { display: flex; border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.vt-newsletter-form input { flex: 1; padding: 12px 20px; background: rgba(255,255,255,0.06); border: none; color: var(--branco); font-size: 14px; outline: none; }
.vt-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.vt-newsletter-form button { padding: 12px 20px; background: var(--dourado); border: none; color: var(--branco); cursor: pointer; font-size: 14px; font-weight: 600; transition: background var(--trans); white-space: nowrap; }
.vt-newsletter-form button:hover { background: #a8860f; }
.vt-footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.vt-footer-bottom-links { display: flex; gap: 20px; list-style: none; }
.vt-footer-bottom-links a { color: rgba(255,255,255,0.4); }
.vt-footer-bottom-links a:hover { color: var(--branco); }

/* ── BREADCRUMB ── */
.vt-breadcrumb { background: linear-gradient(135deg, #0d3b6e 0%, var(--azul) 100%); padding: 64px 0; position: relative; overflow: hidden; }
.vt-breadcrumb::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--dourado), transparent); }
.vt-breadcrumb h1 { font-size: clamp(28px, 4vw, 44px); color: var(--branco); margin-bottom: 12px; }
.vt-breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); }
.vt-breadcrumb-nav a { color: rgba(255,255,255,0.85); }
.vt-breadcrumb-nav a:hover { color: var(--branco); }
.vt-breadcrumb-nav span { color: var(--dourado); }

/* ── CONTATO ── */
.vt-contact-page { padding: 96px 0; background: var(--cinza-f); }
.vt-contact-card { background: var(--branco); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--sombra); }
.vt-contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.vt-contact-info-icon { width: 48px; height: 48px; background: var(--azul-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--azul); font-size: 20px; flex-shrink: 0; }
.vt-contact-info-text h6 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.vt-contact-info-text p { font-size: 15px; color: var(--cinza-m); margin: 0; }

/* ── RESPONSIVO ── */
@media (max-width: 991px) {
  .vt-nav, .vt-topbar { display: none; }
  .vt-hamburger { display: flex; }
  .vt-hero-content .row { flex-direction: column; }
  .vt-hero-cards { margin-top: 32px; }
  .vt-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .vt-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vt-footer-newsletter { grid-template-columns: 1fr; gap: 20px; }
  .vt-callback-inner { padding: 32px 24px; }
  .vt-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .vt-hero { min-height: auto; }
  .vt-hero h1 { font-size: 32px; }
  .vt-hero-btns { flex-direction: column; }
  .vt-stats-grid { grid-template-columns: 1fr 1fr; }
  .vt-footer-cols { grid-template-columns: 1fr; }
  .vt-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .vt-services-grid { grid-template-columns: 1fr 1fr; }
  .vt-test-grid { grid-template-columns: 1fr; }
  .vt-contact-card { padding: 28px 20px; }
  .vt-cta-btns { flex-direction: column; align-items: center; }
  .vt-about-image { min-height: 280px; margin-top: 32px; }
  .vt-logo img { height: 68px; }
}
