/* ===================================================
   PREMIUM TOURS & TRANSFERS
   Author: ChatGPT
===================================================*/

:root{

--gold:#B08D57;
--gold-light:#D4AF37;

--black:#1F1F1F;
--dark:#F8F8F8;

--white:#FFFFFF;

--gray:#F3F3F3;

--text:#555555;

--shadow:0 15px 40px rgba(0,0,0,.08);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#FFFFFF;
color:#222;

line-height:1.7;

overflow-x:hidden;

}

img{

width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

.container{

width:90%;

max-width:1280px;

margin:auto;

}

/* =======================
NAVBAR
======================= */

header{

position:fixed;

width:100%;

top:0;

left:0;

z-index:999;

transition:.4s;

}

header.scrolled{

background:rgba(255,255,255,.97);

border-bottom:1px solid #eee;

backdrop-filter:blur(10px);

box-shadow:0 5px 20px rgba(0,0,0,.35);

}

.nav{

height:90px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:28px;

font-family:'Playfair Display',serif;

font-weight:700;

letter-spacing:1px;

color:var(--gold);

}

nav{

display:flex;

gap:35px;

}

nav a{
   color:#222;

font-size:15px;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:var(--gold);

}

.btn-nav{

padding:14px 28px;

background:var(--gold);

color:black;

font-weight:600;

border-radius:40px;

transition:.3s;

}

.btn-nav:hover{

transform:translateY(-3px);

background:white;

}

/* =======================
HERO
======================= */

.hero{

height:100vh;

background: #fafafa /* url("../images/hero.jpg") center center/cover */;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(
rgba(255,255,255,11.65),
rgba(255,255,255,.90));

}

.hero-content{

position:relative;

z-index:5;

max-width:850px;

padding:20px;

}

.hero h1{

font-size:72px;

font-family:'Playfair Display',serif;

line-height:1.15;

margin-bottom:25px;
color:#222;


}

.hero p{

font-size:22px;

color:#777;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-gold{

padding:18px 38px;

background:var(--gold);

color:black;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn-gold:hover{

background:white;

transform:translateY(-5px);

}

.btn-outline{

padding:18px 38px;

border:2px solid var(--gold);

border-radius:50px;

transition:.35s;

}

.btn-outline:hover{

background:var(--gold);

color:black;

}

/* =======================
SECTION TITLE
======================= */

section{

padding:110px 0;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

color:var(--gold);

letter-spacing:3px;

font-size:13px;

font-weight:600;

}

.section-title h2{

font-size:44px;

margin-top:10px;

font-family:'Playfair Display',serif;

}
/* ===================================================
   FROTA
===================================================*/

.fleet{

background:#fff;

}

.cars{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.car{

background:#ffffff; border:1px solid #ececec;

border-radius:18px;

overflow:hidden;

transition:.45s;

box-shadow:var(--shadow);

}

.car:hover{

transform:translateY(-12px);

}

.car img{

height:260px;

object-fit:cover;

transition:.6s;

}

.car:hover img{

transform:scale(1.08);

}

.car h3{

font-family:'Playfair Display',serif;

font-size:28px;

padding:28px 30px 10px;

}

.car p{

padding:0 30px 35px;

color:#333;

font-size:15px;

line-height:1.8;

}

/* ===================================================
   QUEM SOMOS
===================================================*/

.about{

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.about img{

border-radius:18px;

box-shadow:var(--shadow);

}

.about span{

color:var(--gold);

font-size:13px;

letter-spacing:3px;

font-weight:600;

}

.about h2{

margin:18px 0 30px;

font-size:46px;

font-family:'Playfair Display',serif;

line-height:1.2;

}

.about p{

color:#888;

font-size:17px;

line-height:2;

margin-bottom:35px;

}

.about ul{

list-style:none;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.about li{

display:flex;

align-items:center;

gap:12px;

font-size:16px;

color:#777;

}

.about li::before{

content:"✓";

width:28px;

height:28px;

display:flex;

align-items:center;

justify-content:center;

background:var(--gold);

color:#000;

border-radius:50%;

font-weight:bold;

font-size:14px;

flex-shrink:0;

}

/* ===================================================
   PEQUENOS DETALHES PREMIUM
===================================================*/

.car,
.about img{

border:1px solid rgba(255,255,255,.05);

}

.car:hover{

box-shadow:

0 20px 45px rgba(0,0,0,.45);

}

.about img:hover{

transform:scale(1.01);

transition:.4s;

}
/* ===================================================
   TOURS
===================================================*/

.tours{

background:#fff;

}

.tour-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.tour-card{

background:#ffffff; border:1px solid #ececec;

overflow:hidden;

border-radius:18px;

box-shadow:var(--shadow);

transition:.45s;

border:1px solid rgba(255,255,255,.05);

}

.tour-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 55px rgba(0,0,0,.45);

}

.tour-card img{

height:320px;

object-fit:cover;

transition:.8s;

}

.tour-card:hover img{

transform:scale(1.08);

}

.tour-content{

padding:30px;

}

.tour-content h3{

font-family:'Playfair Display',serif;

font-size:30px;

margin-bottom:15px;

color:#222;

}

.tour-content p{

color:#222;

font-size:15px;

line-height:1.8;

margin-bottom:25px;

min-height:80px;

}

.tour-content a{

display:inline-block;

padding:14px 28px;

background:transparent;

border:2px solid var(--gold);

border-radius:40px;

color:var(--gold);

font-weight:600;

transition:.35s;

}

.tour-content a:hover{

background:var(--gold);

color:#000;

}

/* ===================================================
   EFEITO PREMIUM NAS IMAGENS
===================================================*/

.tour-card{

position:relative;

}

.tour-card::before{

content:"";

position:absolute;

left:0;

right:0;

top:0;

height:320px;

background:linear-gradient(

180deg,

rgba(0,0,0,0) 35%,

rgba(0,0,0,.45) 100%

);

pointer-events:none;

z-index:1;

}

.tour-card img{

position:relative;

z-index:0;

}

.tour-content{

position:relative;

z-index:2;

}

/* ===================================================
   BADGE OPCIONAL
===================================================*/

.tour-badge{

position:absolute;

top:20px;

left:20px;

background:var(--gold);

color:#000;

padding:8px 14px;

font-size:12px;

font-weight:600;

letter-spacing:1px;

border-radius:30px;

z-index:5;

text-transform:uppercase;

}
/* ===================================================
   CONTACTO
===================================================*/

.contact{

background:#fafafa;

}

.contact form{

max-width:760px;

margin:0 auto;

display:flex;

flex-direction:column;

gap:22px;

}

.contact input,
.contact textarea{

width:100%;

padding:18px 22px;

background:#ffffff; border:1px solid #ececec;

border:1px solid rgba(255,255,255,.08);

border-radius:12px;

font-size:16px;

color:#222;

font-family:'Poppins',sans-serif;

transition:.35s;

}

.contact textarea{

min-height:180px;

resize:vertical;

}

.contact input::placeholder,
.contact textarea::placeholder{

color:#888;

}

.contact input:focus,
.contact textarea:focus{

outline:none;

border-color:var(--gold);

box-shadow:0 0 0 3px rgba(200,168,107,.15);

}

.contact button{

width:220px;

margin:10px auto 0;

padding:18px 30px;

border:none;

border-radius:50px;

background:var(--gold);

color:#000;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.contact button:hover{

background:#fff;

transform:translateY(-4px);

}

/* ===================================================
   CTA
===================================================*/

.cta{

background: #fff;

text-align:center;

padding:90px 20px;

}

.cta h2{

font-family:'Playfair Display',serif;

font-size:48px;

margin-bottom:35px;

}

.cta .btn-gold{

display:inline-flex;

align-items:center;

gap:12px;

font-size:18px;

padding:18px 38px;

}

.cta .btn-gold i{

font-size:26px;

}

/* ===================================================
   FOOTER
===================================================*/

footer{

background:#fff;

padding:40px 20px;

text-align:center;

border-top:1px solid rgba(255,255,255,.06);

}

footer p{

color:#999;

font-size:15px;

letter-spacing:.5px;

}

/* ===================================================
   WHATSAPP FLOAT
===================================================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:64px;

height:64px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

box-shadow:0 12px 30px rgba(0,0,0,.35);

transition:.35s;

z-index:9999;

}

.whatsapp:hover{

transform:scale(1.12);

}

/* ===================================================
   ANIMAÇÕES
===================================================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

.hero .btn-gold{

animation:float 3s ease-in-out infinite;

}

/* ===================================================
   RESPONSIVO
===================================================*/

@media (max-width:1024px){

.hero h1{

font-size:56px;

}

.about-grid{

grid-template-columns:1fr;

gap:50px;

}

.cars,
.tour-grid{

grid-template-columns:1fr 1fr;

}

}

@media (max-width:768px){

header{

background:#111;

}

nav{

display:none;

}

.hero{

padding:0 20px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.cars,
.tour-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.about h2{

font-size:36px;

}

.about ul{

grid-template-columns:1fr;

}

.cta h2{

font-size:34px;

}

.contact button{

width:100%;

}

.whatsapp{

width:58px;

height:58px;

font-size:30px;

right:18px;

bottom:18px;

}

}