/* ============================================
   Punta Cana para Brasileiros - CSS Principal
   Baseado no design original do WordPress
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-primary: 'Poppins', sans-serif;
    --color-primary: #d4a843;
    --color-primary-hover: #c49a3a;
    --color-dark: #1b1f27;
    --color-darker: #14171c;
    --color-card: #1e2229;
    --color-border: #2a2e36;
    --color-text: #ffffff;
    --color-text-light: #c0c4cc;
    --color-text-muted: #8b8f96;
    --color-success: #25d366;
    --color-danger: #e74c3c;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    background: #ffffff;
    color: #1b1f27;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ============= HEADER ============= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(27, 31, 39, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
}

.header-logo img { height: 42px; }

.header-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.header-nav a {
    color: var(--color-text-light); font-size: 0.9rem; font-weight: 500;
    padding: 5px 0; position: relative;
}
.header-nav a:hover, .header-nav a.active { color: #fff; }
.header-nav a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--color-primary); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .icon { color: var(--color-text-light); font-size: 1.1rem; }
.header-actions .icon:hover { color: #fff; }

.header-flags { display: flex; gap: 4px; }
.header-flags img { width: 22px; height: 15px; border-radius: 2px; opacity: 0.7; }
.header-flags img:hover, .header-flags img.active { opacity: 1; }

.btn-gold {
    background: var(--color-primary); color: #000; padding: 9px 22px;
    border-radius: 25px; font-size: 0.85rem; font-weight: 600;
    border: none; cursor: pointer; display: inline-block;
}
.btn-gold:hover { background: var(--color-primary-hover); color: #000; }

.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ============= HERO ============= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero video, .hero .hero-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 18px; text-shadow: 0 2px 15px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 25px; }
.hero-badges { display: flex; justify-content: center; gap: 25px; margin-top: 20px; }
.hero-badges span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.hero-badges i { color: var(--color-primary); }

/* ============= SECTIONS ============= */
.section { padding: 80px 0; }
.section-dark { background: #f8f9fa; }
.section-header { text-align: center; margin-bottom: 45px; }
.section-header .tag {
    color: var(--color-primary); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; display: block;
    font-style: italic;
}
.section-header h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 10px; color: #1b1f27; }
.section-header p { color: #6c757d; max-width: 600px; margin: 0 auto; }

/* ============= TOUR CARDS ============= */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }

.tour-card {
    background: #ffffff; border-radius: 14px; overflow: hidden;
    border: 1px solid #e9ecef; transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.tour-card .card-img { height: 200px; overflow: hidden; position: relative; }
.tour-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.tour-card:hover .card-img img { transform: scale(1.05); }
.tour-card .badge-discount {
    position: absolute; top: 10px; right: 10px; background: var(--color-danger);
    color: #fff; padding: 4px 10px; border-radius: 15px; font-size: 0.75rem; font-weight: 600;
}
.tour-card .card-body { padding: 18px; }
.tour-card .card-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; color: #1b1f27; }
.tour-card .card-body p { color: #6c757d; font-size: 0.85rem; margin-bottom: 12px; }
.tour-card .card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; border-top: 1px solid #e9ecef;
}
.tour-card .card-footer .duration { color: #6c757d; font-size: 0.85rem; }
.tour-card .card-footer .price { color: var(--color-primary); font-weight: 700; font-size: 1.1rem; }
.tour-card .card-footer .price-old { text-decoration: line-through; color: #adb5bd; font-size: 0.8rem; margin-right: 5px; font-weight: 400; }

/* ============= TESTIMONIALS ============= */
.testimonial-card {
    background: #ffffff; border-radius: 14px; padding: 28px;
    border: 1px solid #e9ecef; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-card .stars { color: var(--color-primary); margin-bottom: 14px; }
.testimonial-card .quote { color: #495057; font-style: italic; font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.testimonial-card .author { font-weight: 600; color: #1b1f27; }
.testimonial-card .location { color: #6c757d; font-size: 0.8rem; }

/* ============= TRANSFER ============= */
.transfer-section { background: linear-gradient(135deg, #1a5276, #154360); padding: 80px 0; }
.transfer-card {
    background: rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: var(--transition);
}
.transfer-card:hover { transform: translateY(-3px); }
.transfer-card img { width: 100%; height: 180px; object-fit: cover; }
.transfer-card .card-body { padding: 22px; }
.transfer-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.transfer-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ============= STATS ============= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; text-align: center; }
.stat-item h3 { font-size: 2.3rem; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; }
.stat-item p { color: #6c757d; font-size: 0.85rem; }

/* ============= BLOG CARDS ============= */
.blog-card {
    background: #ffffff; border-radius: 14px; overflow: hidden;
    border: 1px solid #e9ecef; transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .card-body { padding: 18px; }
.blog-card .category { color: var(--color-primary); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3 { font-size: 1rem; font-weight: 600; margin: 8px 0; line-height: 1.4; color: #1b1f27; }
.blog-card .meta { color: #6c757d; font-size: 0.8rem; }

/* ============= FAQ ============= */
.faq-item {
    background: #ffffff; border-radius: 10px; margin-bottom: 8px;
    border: 1px solid #e9ecef; overflow: hidden;
}
.faq-item summary {
    padding: 16px 22px; font-weight: 500; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; color: #1b1f27;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--color-primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 22px 16px; color: #6c757d; font-size: 0.9rem; }

/* ============= CTA ============= */
.cta-section { padding: 80px 0; text-align: center; background: #f8f9fa; }
.cta-section .tag { color: var(--color-primary); font-size: 0.85rem; }
.cta-section h2 { font-size: 2rem; font-weight: 700; margin: 10px 0 14px; color: #1b1f27; }
.cta-section p { color: #6c757d; max-width: 550px; margin: 0 auto 25px; }

/* ============= FOOTER ============= */
.site-footer {
    background: linear-gradient(135deg, #a8e063 0%, #56ccf2 50%, #f7e94e 100%);
    padding: 60px 0 25px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 35px; }
.footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: #1b1f27; }
.footer-col p { color: #2d3748; font-size: 0.85rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #2d3748; font-size: 0.85rem; }
.footer-col ul li a:hover { color: #000; text-decoration: underline; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    background: rgba(0,0,0,0.1); color: #1b1f27;
}
.footer-social a:hover { background: rgba(0,0,0,0.2); }
.footer-bottom {
    margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: #2d3748; font-size: 0.8rem; }

/* ============= WHATSAPP FLOAT ============= */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 22px; width: 54px; height: 54px;
    background: #25d366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4); z-index: 9998;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ============= COOKIE BANNER ============= */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(20,23,28,0.97); border-top: 1px solid var(--color-border);
    padding: 14px 0; z-index: 10000; display: none;
}
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.cookie-banner p { color: var(--color-text-muted); font-size: 0.83rem; margin: 0; }
.cookie-banner a { color: var(--color-primary); }
.cookie-banner .btn-cookie {
    background: var(--color-primary); color: #000; padding: 7px 18px;
    border-radius: 18px; border: none; font-size: 0.83rem; font-weight: 600; cursor: pointer;
}

/* ============= UTILITIES ============= */
.text-center { text-align: center; }
.mt-4 { margin-top: 30px; }
.btn-outline {
    border: 1px solid #1b1f27; color: #1b1f27; padding: 11px 28px;
    border-radius: 25px; font-size: 0.9rem; font-weight: 500; display: inline-block;
}
.btn-outline:hover { background: #1b1f27; color: #fff; }

/* ============= RESPONSIVE ============= */
@media (max-width: 991px) {
    .header-nav { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero-content h1 { font-size: 2rem; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
