/* ============================================
   style_clean.css — Complementary Styles
   Green Tech Landing Page
   ============================================ */

/* ---- BASE STYLES (for secondary pages) ---- */
:root {
    --bg-color: #FFFFFF;
    --bg-secondary: #F5F7FA;
    --primary-color: #34C759;
    --accent-color: #0071E3;
    --text-main: #1D1D1F;
    --text-secondary: #86868B;
    --border-color: #D2D2D7;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
    background: radial-gradient(circle at top left, #F2F9FF 0%, #FFFFFF 50%, #F5F9F6 100%);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.main-header {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo a { color: inherit; text-decoration: none; }

.logo-img { height: 35px; width: auto; object-fit: contain; }

.main-nav a {
    color: var(--text-secondary);
    margin-left: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.main-nav .btn-cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

/* ---- GENERAL UTILITIES ---- */

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* Scroll Reveal Animation - JS adds .revealed class on scroll */
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---- TRUST BADGES (Hero) ---- */

.trust-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px auto 35px;
    flex-wrap: wrap;
}

.trust-badge {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

/* ---- TRUST BAR (Stats) ---- */

.trust-bar {
    background: var(--bg-secondary, #F5F7FA);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    display: block;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.trust-item strong * {
    font-size: inherit !important;
    font-weight: inherit !important;
}

.trust-item > span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
    text-align: center;
}

.counter {
    font-variant-numeric: tabular-nums;
}

/* ---- SECTION HEADERS ---- */

.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* ---- CARD GRID SYSTEM ---- */

.grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.grid-cards.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* ---- SERVICE CARDS ---- */

.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 35px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.collapsed-card {
    text-align: center;
    padding: 30px 20px;
}

.collapsed-card h3 {
    font-size: 1.1rem;
}

/* ---- ICON BOX ---- */

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E8F9EE 0%, #F0FBF4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.icon-box svg,
.icon-box i {
    width: 28px;
    height: 28px;
}

.collapsed-card .icon-box {
    margin: 0 auto 15px;
}

/* ---- LINK ARROW ---- */

.link-arrow {
    color: var(--accent-color, #0071E3);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.link-arrow:hover {
    gap: 8px;
}

.link-arrow svg,
.link-arrow i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- BENEFITS (Why Choose Us) ---- */

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefits-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-main);
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefits-list li i,
.benefits-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list li strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-main);
}

.benefits-list li p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---- CTA STRIP ---- */

.cta-strip {
    background: linear-gradient(135deg, #34C759 0%, #2DB84C 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-white {
    background: #FFFFFF !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.btn-white:hover {
    background: #F5F5F7 !important;
    transform: translateY(-2px);
}

/* ---- GALLERY ---- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
}

/* ---- CHAT WIDGET ---- */

.chat-widget-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.chat-widget-card {
    width: 100%;
    max-width: 420px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.chat-header {
    background: linear-gradient(135deg, #34C759 0%, #2DB84C 100%);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.operator-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.chat-info h4 {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.status-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.05em;
}

.chat-body {
    padding: 24px;
}

.chat-bubble {
    background: #F0F0F0;
    border-radius: 18px 18px 18px 4px;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    max-width: 90%;
    line-height: 1.5;
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.chat-bubble:nth-child(1) {
    animation-delay: 0.2s;
}

.chat-bubble:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-checks {
    color: #34C759;
    margin-left: 5px;
    vertical-align: middle;
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    border: 1px solid var(--border-color, #D2D2D7);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.btn-chat-start {
    background: linear-gradient(180deg, #34C759 0%, #30B74D 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.03em;
}

.btn-chat-start:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.4);
}

/* ---- TESTIMONIALS ---- */

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34C759 0%, #2DB84C 100%);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
}

.t-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---- FAQ ACCORDION ---- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item details summary {
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-item details p {
    padding: 0 24px 18px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ---- LOCATION SECTION ---- */

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.icon-box-small {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E8F9EE 0%, #F0FBF4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.info-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-main);
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.location-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-outline-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--border-color, #D2D2D7);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline-app:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.15);
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

/* ---- TICKET FORM SECTION ---- */

.ticket-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ticket-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.ticket-info > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.ticket-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34C759 0%, #2DB84C 100%);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Glass Card / Form Container */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.form-container {
    width: 100%;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i,
.form-group label svg {
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--border-color, #D2D2D7);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B5;
}

/* LGPD Checkbox */
.lgpd-check {
    margin-top: 4px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-color, #D2D2D7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    margin-top: 1px;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.label-text {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
}

.label-text a {
    color: var(--primary-color);
}

/* Full-width submit button */
.full-width-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
}

.secure-badge {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ---- DARK FOOTER ---- */

.blue-footer {
    background: #1D1D1F;
    color: #F5F5F7;
    padding: 50px 0 30px;
    text-align: center;
}

.blue-footer .logo {
    justify-content: center;
    margin-bottom: 20px;
    color: #F5F5F7;
}

.blue-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px 18px;
    margin-bottom: 25px;
}

.blue-footer-badge img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.footer-links-blue {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links-blue a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-blue a:hover {
    color: #FFFFFF;
}

/* ---- FLOATING WHATSAPP BUTTON ---- */

.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

.float-wa:hover .tooltip-wa {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.65);
    }
}

.tooltip-wa {
    position: absolute;
    right: 70px;
    background: #1D1D1F;
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.tooltip-wa::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1D1D1F;
}

/* ============================================
   RESPONSIVE — Mobile First (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {

    /* Trust Badges */
    .trust-badge-container {
        gap: 16px;
    }

    .trust-badge {
        height: 38px;
    }

    /* Trust Bar */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-item strong {
        font-size: 1.2rem;
    }

    /* Sections */
    .services-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 35px;
    }

    /* Card Grids */
    .grid-cards,
    .grid-cards.three-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 28px 22px;
    }

    /* Benefits */
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .benefits-content h2 {
        font-size: 1.7rem;
    }

    /* CTA Strip */
    .cta-strip {
        padding: 45px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-caption {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    /* Chat Widget */
    .chat-widget-card {
        max-width: 100%;
        margin: 0 20px;
    }

    .chat-widget-section {
        padding: 40px 0;
    }

    /* Location */
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-actions {
        flex-direction: column;
    }

    .btn-outline-app {
        justify-content: center;
    }

    .map-container {
        min-height: 280px;
    }

    .map-container iframe {
        min-height: 280px;
    }

    /* Ticket Form */
    .ticket-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ticket-info h2 {
        font-size: 1.6rem;
    }

    .glass-card {
        padding: 28px 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-item details summary {
        padding: 15px 20px;
        font-size: 0.92rem;
    }

    .faq-item details p {
        padding: 0 20px 15px;
        font-size: 0.88rem;
    }

    /* Floating WhatsApp */
    .float-wa {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 18px;
    }

    .tooltip-wa {
        display: none;
    }

    /* Footer */
    .blue-footer {
        padding: 40px 0 25px;
    }

    .footer-links-blue {
        gap: 14px;
    }
}

/* ---- Small Mobile (max-width: 480px) ---- */

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        height: 32px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}
