/* Global Styles & Variables */
:root {
    --primary-color: #0088cc;
    /* Blue similar to image */
    --primary-dark: #006699;
    --secondary-color: #0056b3;
    --accent-color: #fca311;
    /* Example accent */
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: transparent;
    /* Allow bubbles to show */
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid #e0e0e0;
    margin-right: 10px;
}

.btn-secondary-outline:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background-color: #1E3A8A;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.header-logo {
    height: 70px;
    width: auto;
}

.logo-icon {
    margin-right: 10px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: white;
}

.nav a:hover {
    color: #60a5fa;
}

.header-actions {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.tag {
    display: inline-block;
    background-color: #e0f2fe;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 5px;
}

/* Services (Removed) */
/* Step-by-Step Section */
.step-section {
    padding: 20px 0 20px 0;
    font-family: 'Poppins', sans-serif;
    background-color: #00A85A;
    /* Green background */
    background-image: url('bg-passo-a-passo.png');
    background-size: 300px;
    /* Adjust size to make icons visible as pattern */
    background-repeat: repeat;
    background-blend-mode: soft-light;
    /* Blend with green */
    color: white;
}

.step-header-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: white;
}

.step-header-title .highlight {
    color: #1e3a8a;
    /* Blue highlight */
    background-color: white;
    padding: 0 10px;
    border-radius: 50px;
}

/* Container for the steps track */
.step-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    /* Connected look */
    width: 100%;
    margin-bottom: 40px;
    /* Space for the circles below */
}

/* Individual Column Styles */
.step-col {
    padding: 30px 15px 50px 15px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-col h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.step-col h3 {
    font-size: 2.5rem;
    /* Increased size */
    font-weight: 800;
    margin: 10px auto 20px auto;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    /* Circle border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    /* Slight background */
}

.step-subtitle {
    font-size: 0.75rem;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 0.5px;

    text-transform: uppercase;
}

/* Column Colors */
.step-warning {
    background-color: #374151;
    /* Dark Grey base */
    background: linear-gradient(180deg, #374151 0%, #111827 100%);
    color: white;
}

.step-warning h2 {
    color: #ef4444;
}

.step-warning .warning-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 15px;
}

.step-1 {
    background-color: #0ea5e9;
}

/* Light Blue */
.step-2 {
    background-color: #0284c7;
}

/* Medium Blue */
.step-3 {
    background-color: #1e3a8a;
}

/* Dark Blue */

/* Lists */
.step-list {
    text-align: left;
    list-style: none;
    font-size: 1rem;
    /* Increased font size */
    width: 100%;
    margin-top: 20px;
    /* Reduced top margin to move text up */
    line-height: 1.5;
    margin-bottom: 15px;
    /* Space for button on mobile */
}

.step-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.step-warning .step-list li::before {
    color: #ef4444;
}

.step-1 .step-list li::before,
.step-2 .step-list li::before,
.step-3 .step-list li::before {
    color: white;
}

/* Timeline Number Circles */
.timeline-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: inherit;
    /* Matches column color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid white;
    position: absolute;
    bottom: -25px;
    /* Half hanging out */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.step-warning .timeline-circle {
    background-color: #ef4444;
}

/* Connecting Line */
.step-timeline-bar {
    height: 8px;
    background-color: #1e3a8a;
    width: 100%;
    position: relative;
    border-radius: 4px;
    display: block;
    /* Visible on Desktop */
}

/* Step 1 Visuals */
.visual-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.visual-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.visual-item img {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.visual-caption {
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile Next Button */
.mobile-next-btn {
    display: none;
    /* Hidden on desktop */
    margin-top: 15px;
    padding: 10px 20px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.mobile-next-btn:active {
    transform: scale(0.95);
}

.mobile-next-btn i {
    margin-left: 5px;
}

.step-warning .mobile-next-btn {
    color: #ef4444;
}

/* Mobile Carousel Styles */
@media (max-width: 992px) {
    .step-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        /* Space for scrollbar/indicators */
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
        margin-bottom: 10px;
    }

    .step-col {
        min-width: 100%;
        /* Show one full card at a time */
        scroll-snap-align: center;
        border-radius: 15px;
        /* Rounded cards on mobile */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding-bottom: 60px;
        /* Space for timeline circle */
    }

    .mobile-next-btn {
        display: inline-block;
        /* Show on mobile */
    }

    .step-timeline-bar {
        display: none;
        /* Hide timeline on mobile */
    }

    .timeline-circle {
        bottom: 15px;
        /* Move inside the card */
    }

    /* Navigation Dots */
    .step-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .dot-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s;
    }

    .dot-indicator.active {
        background-color: white;
        transform: scale(1.2);
    }
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.1);
    transform: scale(1.05);
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #0f172a;
}

.pricing-card .subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
    min-height: 40px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 10px;
}

.price span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 5px;
}

.features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: start;
}

.features {
    margin-bottom: 30px;
}

/* Packages */
.packages {
    padding: 80px 0;
    background-color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.package-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.package-card .qty {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.package-card h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-banner {
    text-align: center;
    background-color: #fce7f3;
    /* Light pinkish accent? Or stay blue. Let's do white with simple text */
    background-color: transparent;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    /* Separar as colunas */
}

.contact-info {
    flex: 1;
    background-color: #0f172a;
    /* Dark background matching image */
    padding: 60px;
    color: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-desc {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    /* Or white depending on preference, image looks like icon color varies or is white */
    color: #e2e8f0;
}

.contact-item .label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #f1f5f9;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-map {
        height: 400px;
    }
}

/* Full Guide Image Section */
/* Full Guide Image Section */
.full-guide-section {
    padding: 80px 0;

    background-color: #242276;
    text-align: center;
}

.guide-image-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-shadow {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section & Carousel */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8fafc;
    overflow: hidden;
    /* Hide overflow from container */
}

.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 20px 5px;
    /* Add padding for shadow visibility */
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f1f5f9;
    flex: 0 0 100%;
    /* Default mobile: 1 slide per view */
    max-width: 100%;
}

/* Tablet: 2 slides */
@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Desktop: 3 slides */
@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

@media (max-width: 768px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    gap: 15px;
}

.g-icon {
    font-size: 1.5rem;
    color: #4285f4;
    /* Google Blue */
}

.g-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.2;
}

.text-warning {
    color: #fca311;
}

.testimonial-card .stars {
    color: #fca311;
    margin-bottom: 20px;
    font-size: 1rem;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 3rem;
    color: #f1f5f9;
}

.review-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 30px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: #e0f2fe;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0 40px;
    /* Adjusted padding */
    background-color: var(--white);
    text-align: center;
}

.instagram-header h2 {
    font-size: 2rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.instagram-header h2 i {
    color: #E1306C;
}

.instagram-header p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.insta-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    color: white;
    font-size: 2rem;
}

.btn-instagram-lg {
    display: inline-flex;
    align-items: center;
    background: #E1306C;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-instagram-lg:hover {
    background: #c13584;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

/* Footer */
.footer {
    background-color: #0f172a;
    /* Dark blue/black */
    padding: 60px 0 20px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-slogan {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
    transition: transform 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-2px);
}

.instagram-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.made-with {
    color: #94a3b8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

.visitor-counter {
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visitor-counter i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.visitor-counter .divider {
    color: #475569;
}

.visitor-counter strong {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {

    .nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 40px 0;
    }
}

/* Cookie Popup - Bottom Left */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    /* Card width */
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Stronger shadow for floating effect */
    padding: 24px;
    z-index: 9999;
    border-radius: 12px;
    border: 1px solid #f1f5f9;

    /* Animation */
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);

    /* Hidden state */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    /* Reset from previous full-width styles if any */
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.cookie-content p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

#accept-cookies {
    width: 100%;
    /* Full width button */
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

/* Mobile responsive for popup */
@media (max-width: 480px) {
    .cookie-banner {
        width: calc(100% - 40px);
        /* Full width minus margins */
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

/* Tips and News Section */
.tips-section {
    padding: 80px 0;
    background-color: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tip-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tip-card:hover .tip-image img {
    transform: scale(1.05);
}

.tip-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0ea5e9;
    /* Light blue */
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tip-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tip-meta {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.tip-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tip-content h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.tip-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E3A8A;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f7ff;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #0ea5e9;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Etiquette Manual Styles */
.etiquette-container {
    background-color: #242276;
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.etiquette-header-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid #00A85A;
    /* Green accent line */
    padding-bottom: 20px;
    margin-bottom: 40px;
    gap: 20px;
}

.etiquette-title h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    color: white;
}

.etiquette-desc p {
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
    color: white;
}

/* Grid Layout */
.etiquette-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on desktop */
    gap: 40px;
}

/* Standardize category styling for Tabs */
.etiquette-category {
    margin-bottom: 20px;
    animation: fadeIn 0.5s;
    /* Grid layout for all tabs */
    display: none;
    /* Hidden by default, JS toggles this */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Ensure active tab displays as grid */
.etiquette-category.active {
    display: grid !important;
}

/* Category Title - Hidden in Tabs if desired, but keeping for clarity */
.etiquette-category h3.cat-title {
    grid-column: 1 / -1;
    color: #00A85A;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.symbol-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
}

.symbol-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.symbol-icon i {
    color: #000;
    font-size: 24px;
}

.symbol-row p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: white;
    text-align: left;
}

/* Tab Navigation Styles */
.etiquette-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tab-btn:hover {
    border-color: #00A85A;
    color: white;
}

.tab-btn.active {
    background: #00A85A;
    border-color: #00A85A;
    color: white;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .etiquette-container {
        padding: 20px;
    }

    .etiquette-header-box {
        flex-direction: column;
        text-align: center;
    }

    .etiquette-title h1 {
        font-size: 2rem;
    }

    .etiquette-desc p {
        font-size: 0.9rem;
    }

    .etiquette-tabs {
        gap: 5px;
    }

    .tab-btn {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .etiquette-category {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 100px 0 80px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-block {
    margin-bottom: 40px;
}

.privacy-block:last-of-type {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-block p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.privacy-block ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.privacy-block ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-block ul li strong {
    color: #1E3A8A;
}

.privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.privacy-footer .btn {
    display: inline-block;
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 80px 0 60px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-block h2 {
        font-size: 1.3rem;
    }

    .privacy-block p,
    .privacy-block ul li {
        font-size: 0.95rem;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    z-index: 10000;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid #1E3A8A;
}

.cookie-consent.show {
    transform: translateX(0);
}

.cookie-content h4 {
    margin: 0 0 10px 0;
    color: #1E3A8A;
    font-size: 1.3rem;
    font-weight: 700;
}

.cookie-content p {
    margin: 0 0 15px 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content p a {
    color: #1E3A8A;
    text-decoration: underline;
}

.cookie-content p a:hover {
    color: #0ea5e9;
}

.cookie-content .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

/* Mobile responsive for cookie popup */
@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Footer Logo */
.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

/* Admin Icon Button */
.admin-icon-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px 10px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.admin-icon-btn:hover {
    color: #0ea5e9;
}

/* Admin Login Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #1E3A8A;
}

.modal-content h3 {
    margin: 0 0 10px 0;
    color: #1E3A8A;
    font-size: 1.8rem;
}

.modal-subtitle {
    color: #64748b;
    margin: 0 0 25px 0;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1E3A8A;
}

.login-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 20px;
}

#adminLoginForm .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

/* Neighborhoods Footer Text */
.neighborhoods-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Fix Mobile Banner Cropping */
@media (max-width: 768px) {
    .hero-image img {
        min-height: auto;
        object-fit: contain;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
}