/* ========================================
   SEÇÃO PASSEIOS - LAYOUT ASSIMÉTRICO
======================================== */
.passeios-section {
    padding: 6rem 0;
    background: var(--branco);
    position: relative;
    overflow: hidden;
}

.passeios-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   LAYOUT ASSIMÉTRICO 60/40
======================================== */
.passeios-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ========================================
   LADO ESQUERDO - IMAGEM
======================================== */
.passeios-image-wrapper {
    position: relative;
    height: 650px;
}

.passeios-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 53, 131, 0.15),
        0 8px 25px rgba(0, 53, 131, 0.08);
}

.passeios-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.passeios-image:hover img {
    transform: scale(1.05);
}

/* Overlay Gradient */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 53, 131, 0.5) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Badge Flutuante */
.passeios-floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 53, 131, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon-animated {
    width: 40px;
    height: 40px;
    stroke: var(--laranja-vibrante);
    fill: none;
    stroke-width: 1.5;
    animation: rotateIcon 8s linear infinite;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--azul-principal);
}



/* Stats Overlay */
.passeios-stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.stat-overlay-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 53, 131, 0.15);
    transition: all 0.3s ease;
}

.stat-overlay-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 53, 131, 0.2);
}

.stat-overlay-item svg {
    width: 32px;
    height: 32px;
    stroke: var(--laranja-vibrante);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.stat-overlay-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-principal);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--cinza-texto);
    font-weight: 500;
}

/* ========================================
   LADO DIREITO - CONTEÚDO
======================================== */
.passeios-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.passeios-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.passeios-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--azul-principal);
    line-height: 1.3;
    margin: 0;
}

.passeios-title span {
    color: var(--laranja-vibrante);
    display: inline-block;
}

/* Descrição */
.passeios-description {
    margin: 0;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cinza-texto);
    margin: 0;
}

/* Lista de Benefícios */
.passeios-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--cinza-texto);
}

.benefit-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    stroke: var(--azul-principal);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 2px;
}

/* Tipos de Passeios */
.passeios-tipos {
    background: var(--bege-suave);
    padding: 1.75rem;
    border-radius: 16px;
    border-left: 4px solid var(--laranja-vibrante);
}

.tipos-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul-principal);
    margin: 0 0 1.25rem;
}

.tipos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tipo-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--branco);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--azul-principal);
    border: 1px solid rgba(0, 53, 131, 0.1);
    transition: all 0.3s ease;
}

.tipo-tag:hover {
    background: var(--azul-principal);
    color: var(--branco);
    border-color: var(--azul-principal);
    transform: translateX(4px);
}

.tipo-tag svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* CTA */
.passeios-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--cinza-texto);
    margin: 0;
}

.cta-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--laranja-vibrante);
    fill: none;
    stroke-width: 2;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .passeios-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .passeios-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .passeios-section {
        padding: 4rem 0;
    }

    .passeios-image-wrapper {
        height: 400px;
    }

    .passeios-floating-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.25rem;
    }

    .badge-icon-animated {
        width: 32px;
        height: 32px;
    }

    .badge-number {
        font-size: 1.1rem;
    }

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

    .passeios-stats-overlay {
        display: none;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0.60rem;
    }

    .stat-overlay-item {
        padding: 0.60rem;
    }

    .stat-overlay-item svg {
        width: 20px;
        height: 20px;
    }

    .stat-number {
        font-size: 1rem;
    }

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

    .passeios-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .passeios-image-wrapper {
        height: 350px;
    }

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

    .lead-text {
        font-size: 1rem;
    }
}

/* ========================================
   ANIMAÇÕES DE ENTRADA
======================================== */
.passeios-image-wrapper {
    opacity: 0;
    transform: translateX(-30px);
}

.passeios-content {
    opacity: 0;
    transform: translateX(30px);
}

/* JavaScript vai adicionar estas classes via Intersection Observer */
.passeios-image-wrapper.animated {
    animation: slideInLeft 0.8s ease forwards;
}

.passeios-content.animated {
    animation: slideInRight 0.8s ease 0.2s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
