/* ========================================
   INDICA NH - ESTILOS PRINCIPAIS
   Layout: Protótipo + Logo + Instagram + Mobile-First
   ======================================== */

/* Reset e Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --vermelho: #E63946;
    --verde: #50C9A8;
    --azul: #3F3D96;
    --cinza-claro: #f8f9fa;
    --cinza: #6c757d;
    --escuro: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--escuro);
    line-height: 1.6;
}

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

/* ===== HEADER ===== */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--escuro);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    color: var(--verde);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: var(--escuro);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--vermelho);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vermelho);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(45deg, #f09433, #bc1888);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    color: #fff;
}

.instagram-link i {
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--escuro);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.nav-menu.mobile-hidden {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--azul) 0%, var(--verde) 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    max-width: 700px;
    margin: 30px auto 0;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
    border-radius: 50px;
}

.search-box button {
    background: var(--vermelho);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box button:hover {
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--escuro);
    font-weight: 700;
}

.section.bg-light {
    background: var(--cinza-claro);
}

.section.bg-gradient {
    background: linear-gradient(135deg, var(--azul), var(--verde));
    color: #fff;
}

.section.bg-gradient .section-title {
    color: #fff;
}

/* ===== GRIDS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ===== CARDS ===== */
.card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--vermelho), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.card h3 {
    font-size: 18px;
    color: var(--escuro);
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    color: var(--cinza);
    font-size: 14px;
}

/* ===== HIGHLIGHT CARDS ===== */
.highlight-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #fff;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.highlight-content {
    padding: 20px;
}

.highlight-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--escuro);
}

.highlight-content p {
    color: var(--cinza);
    margin-bottom: 15px;
    font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--vermelho);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    color: #fff;
}

/* ===== FEATURES ===== */
.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    opacity: 0.9;
    font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--escuro);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--verde);
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    font-size: 14px;
}

/* ===== PROPAGANDAS CAROUSEL ===== */
.cities-town {
    padding: 40px 0;
    background: #fff;
}

.cities-town .owl-cites-town .item {
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.cities-town .owl-cites-town .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.cities-town .owl-cites-town .item .thumb {
    position: relative;
    overflow: hidden;
}

.cities-town .owl-cites-town .item .thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.cities-town .owl-cites-town .item:hover .thumb img {
    transform: scale(1.05);
}

.cities-town .owl-cites-town .item .thumb h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.owl-cites-town.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 32, 3, 0.8);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.owl-cites-town.owl-carousel .owl-nav button:hover {
    background: rgba(248, 32, 3, 1);
}

.owl-cites-town.owl-carousel .owl-nav .owl-prev { left: -20px; }
.owl-cites-town.owl-carousel .owl-nav .owl-next { right: -20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-box button {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .grid,
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
    
    .instagram-link {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
    
    .owl-cites-town.owl-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .card {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.hidden { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}
/* Carrossel de Publicidade - Imagens Ajustadas */
.cities-town {
    padding: 40px 0;
    background: #fff;
}

.cities-town .owl-cites-town {
    position: relative;
}

.cities-town .owl-cites-town .item {
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    background: #fff;
}

.cities-town .owl-cites-town .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.cities-town .owl-cites-town .item .thumb {
    position: relative;
    width: 100%;
    height: 130px; /* ✅ REDUZIDO de 250px para 130px (proporção 240x130) */
    overflow: hidden;
    background: #f8f9fa;
}

.cities-town .owl-cites-town .item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ MOSTRA IMAGEM COMPLETA SEM CORTAR */
    transition: transform 0.3s;
}

.cities-town .owl-cites-town .item:hover .thumb img {
    transform: scale(1.05);
}

.cities-town .owl-cites-town .item .thumb h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Owl Carousel Navigation */
.cities-town .owl-cites-town .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 57, 70, 0.8);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s;
}

.cities-town .owl-cites-town .owl-nav button:hover {
    background: rgba(230, 57, 70, 1);
}

.cities-town .owl-cites-town .owl-nav .owl-prev {
    left: -20px;
}

.cities-town .owl-cites-town .owl-nav .owl-next {
    right: -20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .cities-town .owl-cites-town .item .thumb {
        height: 100px; /* Menor em mobile */
    }
    
    .cities-town .owl-cites-town .owl-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .cities-town .owl-cites-town .item .thumb {
        height: 80px; /* Menor ainda em telas pequenas */
    }
}