:root {
    /* Paleta Inauguração Pet - Confiança e Urgência */
    --primary: #059669; /* Verde Esmeralda */
    --primary-dark: #047857;
    --accent: #F59E0B; /* Laranja/Dourado */
    --accent-hover: #D97706;
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --border-color: #E2E8F0;
    
    /* Variables */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; color: var(--text-dark); background-color: var(--bg-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.section-padding { padding: 90px 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Topbar */
.topbar { background: linear-gradient(90deg, var(--primary), var(--primary-dark)); color: white; text-align: center; padding: 12px 20px; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; gap: 8px; z-index: 100; position: relative; }
.pulse-dot { width: 10px; height: 10px; background-color: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8); } 70% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }

/* Floating WhatsApp */
.float-whatsapp { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 999; transition: var(--transition); }
.float-whatsapp:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }

/* Typography & Badges */
h1, h2, h3, h4 { line-height: 1.2; }
.highlight { color: var(--primary); }
.badge { display: inline-block; padding: 8px 16px; background-color: #D1FAE5; color: var(--primary-dark); border-radius: 100px; font-size: 0.875rem; font-weight: 700; margin-bottom: 24px; border: 1px solid #A7F3D0; }
.badge-parking { background-color: #FEF3C7; color: #B45309; border-color: #FDE68A; margin-left: 8px; }

/* Hero Section */
.hero { padding: 80px 0 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.hero .subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 90%; }
.action-buttons { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.micro-copy { font-size: 0.875rem; color: var(--text-muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1rem; font-weight: 700; border-radius: var(--radius-md); text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background-color: var(--primary); color: white; box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 25px rgba(5, 150, 105, 0.3); }
.btn-outline { background-color: transparent; color: var(--text-dark); border: 2px solid var(--border-color); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3); }

/* Hero Image & Floating Card */
.image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.image-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/5; }
.floating-card { position: absolute; bottom: -20px; left: -20px; background: white; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 16px; z-index: 10; border: 1px solid var(--bg-light); }
.floating-card .icon { font-size: 2rem; background: var(--bg-light); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.floating-card .text strong { display: block; color: var(--text-dark); font-size: 1.1rem; }
.floating-card .text span { color: var(--primary); font-size: 0.9rem; font-weight: 600; }

/* Problem & VIP Form */
.problem-vip { border-bottom: 1px solid var(--border-color); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.highlight-box { background: var(--bg-light); padding: 24px; border-left: 4px solid var(--accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; box-shadow: var(--shadow-sm); margin-top: 24px; }
.highlight-box strong { color: var(--accent-hover); display: block; margin-bottom: 8px; font-size: 1.1rem; }
.vip-form-card { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 2px solid var(--primary); }
.vip-form-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.5rem; }
.vip-form-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.custom-form input, .custom-form select { width: 100%; padding: 16px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); margin-bottom: 16px; font-family: 'Outfit', sans-serif; font-size: 1rem; transition: var(--transition); background: var(--bg-light); }
.custom-form input:focus, .custom-form select:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1); background: white; }

/* Concept Section */
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.concept-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.concept-text h2 { font-size: 2.2rem; margin-bottom: 16px; color: var(--primary-dark); }
.check-list { list-style: none; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 12px; font-size: 1.05rem; color: var(--text-muted); }
.check-list li::before { content: '✅'; position: absolute; left: 0; top: 2px; font-size: 1.1rem; }
.check-list li strong { color: var(--text-dark); }

.transparency-box { background: white; border: 1px solid #BAE6FD; padding: 20px; border-radius: var(--radius-md); display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.transparency-box .icon { font-size: 2rem; }
.transparency-box strong { color: #0284C7; font-size: 1.1rem; display: block; margin-bottom: 4px; }
.transparency-box p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Services */
.section-header { text-align: center; max-width: 700px; margin: 0 auto; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--primary-dark); }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: var(--transition); text-align: center; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--primary); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 1rem; }

/* Stats & Team Section */
.stats-section { padding: 60px 0; background: var(--primary-dark); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.stat-box h3 { font-size: 3.5rem; color: var(--accent); margin-bottom: 8px; font-weight: 800; }
.stat-box p { font-size: 1.1rem; font-weight: 500; opacity: 0.9; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.team-text h2 { font-size: 2.2rem; margin-bottom: 16px; }
.team-text p { font-size: 1.1rem; color: var(--text-muted); }
.quote-card { background: white; padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border-left: 4px solid var(--border-color); font-style: italic; color: var(--text-muted); font-size: 1.05rem; }
.highlight-quote { border-left-color: var(--primary); }
.highlight-quote strong { display: block; color: var(--primary); font-size: 1.3rem; font-style: normal; margin-bottom: 8px; }

/* Location Section */
.landmarks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.landmark-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.landmark-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.landmark-card .label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(15, 23, 42, 0.8); color: white; padding: 12px; text-align: center; font-weight: 600; backdrop-filter: blur(4px); }

.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.address-box { display: flex; align-items: flex-start; gap: 16px; background: var(--bg-light); padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.address-box .pin { font-size: 2rem; }
.address-box strong { display: block; font-size: 1.3rem; color: var(--text-dark); }
.address-box span { color: var(--text-muted); font-size: 1rem; }

/* Cards de Localização do Mapa */
.location-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.location-card { background: white; border-radius: 12px; padding: 16px 10px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.06); border: 1px solid var(--border-color); cursor: pointer; transition: var(--transition); display: flex; flex-direction: column; align-items: center; justify-content: space-between; min-height: 160px; }
.location-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: #0266C8; }
.location-card.active { border: 2px solid #0266C8; box-shadow: 0 8px 16px rgba(2, 102, 200, 0.15); }
.location-card .loc-icon { margin-bottom: 8px; height: 40px; display: flex; align-items: center; justify-content: center; position: relative; }
.location-card .loc-icon::after { content: ''; position: absolute; bottom: -5px; width: 35px; height: 10px; background: rgba(2, 102, 200, 0.15); border-radius: 50%; z-index: 0; transform: perspective(40px) rotateX(60deg); }
.location-card .loc-icon svg, .location-card .loc-icon span { position: relative; z-index: 1; }
.location-card h4 { color: #003366; font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; line-height: 1.2; }
.location-card hr { width: 80%; border: 0; border-top: 1px solid #CBD5E1; margin: 6px auto; }
.location-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; }
.location-card p span { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.location-card.btn-gps { background: var(--bg-light); border: 1px dashed #94A3B8; }
.location-card.btn-gps:hover { background: #E2E8F0; border-style: solid; border-color: #0266C8; }
.location-card.btn-gps .loc-icon::after { display: none; }

.map-placeholder iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: #f1f5f9; }

/* Footer */
.footer { background-color: var(--text-dark); color: white; padding: 80px 0 40px; text-align: center; }
.footer-content { max-width: 800px; margin: 0 auto; }
.footer h2 { font-size: 2.2rem; margin-bottom: 20px; }
.footer p { color: #94A3B8; font-size: 1.1rem; margin-bottom: 30px; }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); color: #64748B; font-size: 0.9rem; line-height: 1.6; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .problem-grid, .concept-grid, .team-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { text-align: center; }
    .hero .subtitle { margin-left: auto; margin-right: auto; }
    .action-buttons { justify-content: center; }
    .floating-card { left: 20px; bottom: -20px; }
    .concept-image { order: -1; }
    .landmarks-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .action-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .section-padding { padding: 60px 0; }
    .float-whatsapp { width: 56px; height: 56px; bottom: 20px; right: 20px; }
}