/* ========================================
   Portal da Paz - Serenity Theme
   ======================================== */

:root {
    --primary-color: #0E4B85; /* Azul profundo (Pomba/Logo) */
    --secondary-color: #16883B; /* Verde Esperança (Folhas Logo) */
    --accent-color: #D4AF37; /* Dourado (Detalhes do Carro) */
    --text-dark: #2C3E50;
    --text-light: #5A6A7A;
    --bg-light: #F4F7F6;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 { font-family: 'Lora', serif; color: var(--primary-color); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.bg-light { background-color: var(--bg-light); }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: 4px; font-weight: 700; font-size: 1rem;
    transition: var(--transition); cursor: pointer; border: none;
}

.btn-primary { background-color: var(--whatsapp); color: var(--white); }
.btn-primary:hover { background-color: #1EBE5D; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }

.btn-outline { background-color: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background-color: var(--white); color: var(--primary-color); }

.btn-call { display: inline-flex; align-items: center; gap: 8px; color: var(--white); background-color: var(--accent-color); padding: 10px 20px; border-radius: 5px; font-weight: 700; transition: var(--transition);}
.btn-call:hover { background-color: #b5952f; transform: translateY(-2px); }

/* ========================================
   Header
   ======================================== */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: var(--transition);
}

.nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; border-radius: 50%; }
.logo-text h1 { font-size: 1.2rem; margin: 0; line-height: 1; }
.logo-text span { font-size: 0.75rem; color: var(--accent-color); font-weight: 700; text-transform: uppercase; }

.nav-menu { display: flex; list-style: none; gap: 25px; }
.nav-menu a { font-weight: 600; color: var(--text-light); font-size: 0.95rem; transition: var(--transition); }
.nav-menu a:hover { color: var(--primary-color); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;}
.nav-toggle span { width: 25px; height: 3px; background-color: var(--primary-color); transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    background: url('https://images.pexels.com/photos/158358/lake-constance-nature-water-sun-158358.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 75, 133, 0.95) 0%, rgba(14, 75, 133, 0.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); padding-top: 80px;}

.badge { display: inline-block; background-color: var(--accent-color); color: var(--white); padding: 5px 15px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; border-radius: 3px; margin-bottom: 20px; letter-spacing: 1px;}
.hero-title { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.hero-subtitle { font-size: 1.1rem; color: #E0E6ED; margin-bottom: 35px; font-weight: 300; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ========================================
   About & Sections Common
   ======================================== */
.section-title { font-size: 2.2rem; margin-bottom: 20px; }

.about { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { border-radius: 8px; box-shadow: -15px 15px 0 var(--bg-light); border: 1px solid #eee; }
.about-text p { margin-bottom: 15px; font-size: 1.05rem; }
.features-list { margin-top: 25px; display: flex; flex-direction: column; gap: 10px; }
.features-list div { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary-color); }

/* ========================================
   Services
   ======================================== */
.services { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); border-bottom: 3px solid transparent;}
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--primary-color); box-shadow: 0 10px 25px rgba(0,0,0,0.1);}
.service-card i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 20px; }
.service-card h4 { font-size: 1.2rem; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; color: var(--text-light); }

/* ========================================
   Fleet (Translado)
   ======================================== */
.fleet { padding: 90px 0; }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.fleet-text p { margin-bottom: 15px; font-size: 1.05rem; }
.fleet-images img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 2px solid var(--accent-color); }

/* ========================================
   Footer
   ======================================== */
footer { background-color: var(--primary-color); color: #D0D8E0; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { width: 120px; border-radius: 50%; margin-bottom: 15px; border: 3px solid var(--white);}
.footer-brand p { font-size: 0.95rem; max-width: 300px;}
footer h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; font-family: 'Lato', sans-serif;}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px;}
footer ul li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem;}
footer ul li i { color: var(--accent-color); }
footer a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; background: var(--whatsapp); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 1000; animation: pulse 2s infinite; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ========================================
   Animations (Reveal)
   ======================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 260px; height: 100vh; background: var(--white); flex-direction: column; padding: 90px 30px; box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: var(--transition); }
    .nav-menu.active { right: 0; }
    .about-grid, .fleet-grid { grid-template-columns: 1fr; }
    .fleet-grid { flex-direction: column-reverse; display: flex;}
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero { min-height: 70vh; padding: 120px 0 60px;}
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; }
}