:root {
    --primary: #0a8c7a;
    --primary-dark: #067264;
    --primary-light: #0eb89e;
    --secondary: #f0a030;
    --accent: #e8f7f5;
    --dark: #1a2332;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,140,122,0.85) 0%, rgba(14,184,158,0.7) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-top: 12px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 16px 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition);
}

.navbar-brand .logo-white {
    display: block;
}

.navbar-brand .logo-color {
    display: none;
}

.navbar.scrolled .navbar-brand .logo-white {
    display: none;
}

.navbar.scrolled .navbar-brand .logo-color {
    display: block;
}

.navbar.scrolled .navbar-brand img {
    height: 38px;
}

.navbar .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: var(--accent);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px;
    margin-top: 8px;
}

.navbar .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar .dropdown-item:hover {
    background: var(--accent);
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a2332' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,140,122,0.75) 0%, rgba(26,35,50,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 550px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10,140,122,0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10,140,122,0.45);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-green {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-green:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10,140,122,0.35);
}

/* ========== PASSEIOS ========== */
.passeios-section {
    background: var(--gray-100);
}

.passeio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}

.passeio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.passeio-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.passeio-card:hover .passeio-icon {
    background: var(--gradient-primary);
}

.passeio-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.passeio-card:hover .passeio-icon i {
    color: var(--white);
}

.passeio-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.passeio-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.passeio-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ========== VOUCHER ========== */
.voucher-section {
    position: relative;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
}

.voucher-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.voucher-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.voucher-content {
    position: relative;
    z-index: 1;
}

.voucher-section h2 {
    color: var(--white);
}

.voucher-section h2::after {
    background: rgba(255,255,255,0.5);
}

.voucher-features {
    list-style: none;
    padding: 0;
}

.voucher-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.voucher-features li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.voucher-mockup {
    position: relative;
    z-index: 1;
}

.voucher-mockup img {
    max-width: 320px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ========== EVENTOS ========== */
.evento-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.evento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.evento-card .card-img-wrapper {
    overflow: hidden;
    height: 220px;
}

.evento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover img {
    transform: scale(1.08);
}

.evento-card .card-body {
    padding: 24px;
}

.evento-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.evento-card h5 a {
    color: var(--dark);
}

.evento-card h5 a:hover {
    color: var(--primary);
}

/* ========== REDE CREDENCIADA ========== */
.credenciada-section {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.credenciada-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800') center/cover;
    opacity: 0.15;
}

.credenciada-content {
    position: relative;
    z-index: 1;
}

.credenciada-section h2 {
    color: var(--white);
}

.credenciada-section h2::after {
    background: var(--secondary);
}

/* ========== TV VIVACAIRU ========== */
.tv-section {
    background: var(--gray-100);
}

.video-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.video-card:hover .play-btn {
    background: rgba(10,140,122,0.5);
}

.play-btn i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.video-card .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== NOTICIAS ========== */
.noticia-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.noticia-card .card-img-wrapper {
    overflow: hidden;
    height: 200px;
}

.noticia-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover img {
    transform: scale(1.08);
}

.noticia-card .card-body {
    padding: 24px;
}

.noticia-card .date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.noticia-card h5 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.noticia-card h5 a {
    color: var(--dark);
}

.noticia-card h5 a:hover {
    color: var(--primary);
}

.noticia-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== INSTAGRAM FEED ========== */
.instagram-section {
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    border-radius: var(--radius);
    overflow: hidden;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,140,122,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .overlay {
    opacity: 1;
}

.instagram-item .overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

/* ========== FAQ ========== */
.faq-section {
    background: var(--gray-100);
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.accordion-body {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========== QUEM SOMOS ========== */
.about-section {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-stat {
    text-align: center;
}

.about-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-stat .label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ========== OUVIDORIA / CONTATO ========== */
.contact-section {
    background: var(--gray-100);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    font-size: 1.2rem;
}

.contact-info-item h5 {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.form-control-custom {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10,140,122,0.1);
    background: var(--white);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-primary);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ========== REDE CREDENCIADA PAGE ========== */
.credenciada-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.credenciada-category:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.credenciada-category .icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.credenciada-category .icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.credenciada-category h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.credenciada-category p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 16px;
        box-shadow: var(--shadow-md);
    }

    .navbar .nav-link {
        color: var(--dark) !important;
    }

    .navbar .nav-link:hover {
        background: var(--accent);
        color: var(--primary) !important;
    }

    .about-stats {
        gap: 20px;
    }

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

@media (max-width: 767.98px) {
    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .contact-card,
    .contact-info-card {
        padding: 30px;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-badge {
        font-size: 0.75rem;
    }
}

/* ========== LOADING ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
