:root {
    --primary: #0066cc;
    --primary-dark: #004499;
    --accent: #ffcc00;
    --success: #25d366;
    --orange: #ed7d31;
    --green: #28a745;
    --dark: #2c3e50;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    font-size: 16px;
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(0, 51, 102, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent) !important;
    background: rgba(255,255,255,0.1);
}

.navbar-nav .nav-link.btn {
    background: var(--success);
    color: white !important;
    margin-left: 0.5rem;
}

.navbar-nav .nav-link.btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,51,102,0.9), rgba(0,102,204,0.85)),
                url('../images/navio-capa.jpg') center/cover;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent, rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 130px; /* Aumentado em 30% (de 100px para 130px) */
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.4);
}

.hero h2 {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.4);
}

.hero h2 .highlight {
    color: var(--accent);
    font-weight: 800;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #20ba5a);
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: white;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== SOBRE ========== */
.sobre {
    background: var(--white);
}

.sobre .section-title {
    margin-bottom: 3rem;
}

.sobre-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.sobre-img:hover {
    transform: translateY(-5px);
}

.sobre-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-text .section-title {
    margin-bottom: 2rem;
    text-align: left;
}

.sobre-text .section-title .badge {
    margin-bottom: 1rem;
}

.sobre-text .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.sobre-text .section-title h2 .gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-text .section-title p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 0;
    max-width: 100%;
}

.sobre-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
}

.sobre-quote {
    background: linear-gradient(135deg, rgba(0,102,204,0.08), rgba(0,51,102,0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.sobre-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.sobre-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
}

.sobre-cta h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sobre-cta h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.summary-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.detail-item-full {
    grid-column: span 2;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left-color: var(--accent);
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 10px;
    font-size: 1.3rem;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-text {
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.sobre-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.atividades-catolicas {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(0,51,102,0.03));
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.atividades-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.atividades-title i {
    font-size: 1.3rem;
    color: var(--accent);
}

.atividades-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.atividades-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.atividades-list li i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.presencas-confirmadas {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,193,7,0.05), rgba(255,152,0,0.03));
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

.presencas-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.presencas-title i {
    font-size: 1.3rem;
    color: var(--primary);
}

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

.presenca-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,102,204,0.1);
}

.presenca-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.sobre-final {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

.sobre-oracao {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0,102,204,0.08), rgba(0,51,102,0.05));
    border-radius: 10px;
}

.sobre-oracao i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ========== PACOTES ========== */
.pacotes {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 5rem 0;
}

/* Card de Informações Gerais */
.pacote-info-geral {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 3rem;
    border: 2px solid var(--primary);
}

.info-geral-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-geral-header i {
    font-size: 2rem;
}

.info-geral-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.info-geral-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-geral-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(0,102,204,0.02));
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.info-geral-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-geral-item h4 i {
    font-size: 1.3rem;
}

.info-geral-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.info-geral-item p strong {
    color: var(--primary);
}

.info-geral-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.info-geral-item ul li {
    padding: 0.25rem 0;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-geral-item ul li i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.pacote-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0,0,0,0.06);
    position: relative;
}

.pacote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pacote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,102,204,0.2);
    border-color: var(--primary);
}

.pacote-card:hover::before {
    opacity: 1;
}

.pacote-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.pacote-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.pacote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.pacote-header-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.pacote-lote {
    display: inline-block;
    background: var(--accent);
    color: #1a1a1a;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pacote-header h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    letter-spacing: -0.5px;
}

.pacote-header h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.98);
    line-height: 1.4;
}

.pacote-adultos {
    display: inline-block;
    background: #4A9EFF;
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    margin: 0;
    font-weight: 600;
    border: 2px solid #4A9EFF;
    box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

.pacote-adultos strong {
    font-weight: 700;
    color: white;
}

.pacote-info {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(to bottom, #ffffff, #fafbfc);
}

.pacote-observacao-especifica {
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    margin-top: 0.5rem;
}

.pacote-observacao-especifica p {
    margin: 0;
    color: var(--dark);
    font-size: 0.85rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pacote-observacao-especifica p i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.pacote-observacao-especifica p strong {
    white-space: nowrap;
}

.pacote-roteiro {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.pacote-roteiro p {
    margin-bottom: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
}

.pacote-roteiro p strong {
    color: var(--primary);
}

.roteiro-list {
    list-style: none;
    margin-top: 0.75rem;
    padding-left: 0;
}

.roteiro-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.pacote-preco {
    padding: 0 0 1.25rem 0;
    position: relative;
}

.preco-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cabine-tipo {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.cabine-tipo strong {
    color: var(--primary);
    font-weight: 700;
}

.preco-detalhes {
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.preco-detalhes p {
    margin-bottom: 0.15rem;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.3;
}

.preco-detalhes > p:first-child {
    margin-bottom: 0.05rem;
}

.preco-valor {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    color: var(--success) !important;
    margin: 0.05rem 0 0.15rem 0 !important;
    letter-spacing: -0.5px;
}

.preco-forma {
    font-size: 0.8rem !important;
    color: var(--gray) !important;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 0.3rem !important;
}

.preco-total {
    margin-top: 0.75rem;
    padding: 1.25rem;
    border-top: 2px solid rgba(0,0,0,0.08);
    background: linear-gradient(135deg, rgba(0,102,204,0.06), rgba(0,102,204,0.02));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preco-total p {
    margin-bottom: 0;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.preco-total p strong {
    color: var(--dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.05rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-valor {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    margin: 0 0 0.5rem 0 !important;
    letter-spacing: -0.5px;
    display: block;
}

.total-valor-grande {
    font-size: 1.9rem !important;
    font-weight: 900 !important;
    color: #4A9EFF !important;
    margin: 0 0 0 0 !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(74, 158, 255, 0.2);
    display: block;
}

.preco-total > p:nth-child(3) {
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.pacote-inclui {
    padding: 1rem;
    background: rgba(0,102,204,0.05);
    border-radius: 12px;
}

.inclui-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.inclui-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.inclui-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pacote-observacoes {
    padding: 1rem;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.obs-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.obs-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.obs-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.obs-valor {
    font-size: 0.85rem !important;
    color: var(--accent) !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.pacote-aviso {
    padding: 1rem;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
    margin-top: auto;
}

.pacote-aviso ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pacote-aviso ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.pacote-aviso ul li i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pacote-actions {
    display: flex;
    flex-direction: column; /* Botões empilhados verticalmente */
    gap: 0.75rem; /* Espaçamento entre botões */
    padding: 0.5rem 0 0;
    margin-top: 0.25rem;
    width: 100%; /* Largura total */
}

.btn-whatsapp {
    flex: none; /* Remove flex grow para empilhamento vertical */
    width: 100%; /* Largura total */
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a, #1ea952);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-whatsapp i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.btn-whatsapp > * {
    position: relative;
    z-index: 1;
}

.btn-reservar {
    flex: none; /* Remove flex grow para empilhamento vertical */
    width: 100%; /* Largura total */
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-reservar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-reservar:hover::before {
    width: 300px;
    height: 300px;
}

.btn-reservar:hover {
    background: linear-gradient(135deg, var(--primary-dark), #003d7a);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    color: white;
}

.btn-reservar:active {
    transform: translateY(-1px);
}

.btn-reservar i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.btn-reservar > * {
    position: relative;
    z-index: 1;
}

/* ========== RETIRO ========== */
.retiro-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.retiro-header .container {
    position: relative;
    z-index: 3;
}

.retiro-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 2rem;
    padding: 0 1rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
    position: relative;
    z-index: 3;
}

.navio-video-section {
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.navio-video-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.navio-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.3);
    padding: 10px;
}

.navio-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    background: #000;
}

.retiro-content {
    background: white;
    position: relative;
    padding-top: 4rem;
}

.retiro-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.retiro-img:hover {
    transform: translateY(-5px);
}

.retiro-img img {
    width: 100%;
    height: auto;
    display: block;
}

.entertainment {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.entertainment-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    grid-column: span 2;
}

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

.entertainment-img {
    height: 200px;
    overflow: hidden;
}

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

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

.entertainment-body {
    padding: 1.5rem;
}

.entertainment-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.entertainment-body p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.entertainment-large {
    grid-column: span 3;
}

/* ========== TESTEMUNHOS ========== */
.testemunhos {
    background: linear-gradient(to bottom, var(--light), var(--white));
}

.videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== PARA QUEM ========== */
.para-quem {
    background: var(--white);
}

.para-quem-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.para-quem-img:hover {
    transform: translateY(-5px);
}

.para-quem-img img {
    width: 100%;
    height: auto;
    display: block;
}

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

.feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-icon i {
    display: inline-block;
    line-height: 1;
}

.feature-text {
    flex: 1;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* ========== AVISO ========== */
.aviso {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.aviso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.aviso-wrapper {
    position: relative;
    z-index: 1;
}

.aviso-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 193, 7, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aviso-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 20px 0 0 20px;
}

.aviso-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.aviso-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.aviso-icon {
    width: 80px;
    height: 80px;
    background: #ffc107;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 30px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.aviso-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ffc107;
    border-radius: 20px;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.aviso-text {
    flex: 1;
}

.aviso-badge {
    display: inline-block;
    background: #ffc107;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.aviso-text h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aviso-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-aviso {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-aviso::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-aviso:hover::before {
    width: 300px;
    height: 300px;
}

.btn-aviso:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 135, 84, 0.4);
}

.btn-aviso i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* ========== ROTEIRO ========== */
.roteiro {
    background: linear-gradient(to bottom, var(--light), var(--white));
}

/* ========== TIMELINE ========== */
.cd-container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

.cd-container::after {
    content: '';
    display: table;
    clear: both;
}

#cd-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 2em;
    margin-bottom: 2em;
}

#cd-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background: rgba(0,0,0,0.1);
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0;
}

.cd-timeline-block::after {
    content: '';
    display: table;
    clear: both;
}

.cd-timeline-block:first-child {
    margin-top: 0;
}

.cd-timeline-block:last-child {
    margin-bottom: 0;
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}

.cd-timeline-img img {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
}

.cd-timeline-img.cd-picture {
    background: var(--primary);
}

.cd-timeline-img.cd-movie {
    background: var(--accent);
}

.cd-timeline-img.cd-location {
    background: #75ce66;
}

.cd-timeline-content {
    position: relative;
    margin-left: 60px;
    background: white;
    border-radius: 0.25em;
    padding: 1em;
    box-shadow: 0 3px 0 rgba(0,0,0,0.1);
}

.cd-timeline-content::after {
    content: '';
    display: table;
    clear: both;
}

.cd-timeline-content h2 {
    color: var(--dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cd-timeline-content p {
    margin: 1em 0;
    line-height: 1.6;
}

.cd-timeline-content .card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0,102,204,0.1);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.cd-date {
    display: inline-block;
    float: left;
    padding: 0.8em 0;
    opacity: 0.7;
}

.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid white;
}

.cd-timeline-content.is-hidden,
.cd-timeline-img.is-hidden {
    visibility: hidden;
}

.cd-timeline-content.bounce-in {
    visibility: visible;
    animation: cd-bounce-2 0.6s;
}

.cd-timeline-img.bounce-in {
    visibility: visible;
    animation: cd-bounce-1 0.6s;
}

@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .cd-timeline-content h2 {
        font-size: 1.25rem;
    }

    .cd-timeline-content p {
        font-size: 1rem;
    }

    .cd-date {
        font-size: 0.875rem;
    }
}

@media (min-width: 1170px) {
    #cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }

    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }

    .cd-timeline-block {
        margin: 4em 0;
    }

    .cd-timeline-block:first-child {
        margin-top: 0;
    }

    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }

    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }

    .cd-timeline-img.is-hidden {
        visibility: hidden;
    }

    .cd-timeline-img.bounce-in {
        visibility: visible;
        animation: cd-bounce-1 0.6s;
    }

    .cd-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }

    .cd-timeline-content::before {
        top: 24px;
        left: 100%;
        border-color: transparent;
        border-left-color: white;
    }

    .cd-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 6px;
        font-size: 1rem;
        float: none;
    }

    .cd-timeline-block:nth-child(odd) .cd-timeline-content {
        float: left;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 24px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: white;
    }

    .cd-timeline-block:nth-child(even) .cd-date {
        left: auto;
        right: 122%;
        text-align: right;
    }

    .cd-timeline-content.is-hidden {
        visibility: hidden;
    }

    .cd-timeline-content.bounce-in {
        visibility: visible;
        animation: cd-bounce-2 0.6s;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        animation: cd-bounce-2-inverse 0.6s;
    }
}

@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    60% {
        opacity: 1;
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0);
    }
}

/* ========== HISTÓRIA ========== */
.historia {
    background: var(--white);
}

.historia-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.historia-img:hover {
    transform: translateY(-5px);
}

.historia-img img {
    width: 100%;
    height: auto;
    display: block;
}

.historia-quote {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
}

.historia-quote p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.historia-quote i {
    color: var(--accent);
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('../images/AdobeStock_226645450.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-subtitle::before {
    content: '✦';
    color: var(--primary);
    font-size: 1rem;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.2rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    margin-top: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
}

.social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.social a:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,102,204,0.4);
    border-color: var(--primary);
}

.social a:nth-child(1):hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}

.social a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(225,48,108,0.4);
}

.social a:nth-child(3):hover {
    background: #ff0000;
    box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .info-geral-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pacotes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pacote-img-wrapper {
        height: 300px;
    }
    
    .pacote-info {
        padding: 1.5rem;
    }
    
    .entertainment {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .entertainment-item {
        grid-column: span 1;
    }
    
    .entertainment-large {
        grid-column: span 1;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-heading {
        margin-top: 2rem;
    }
    
    .footer-heading:first-child {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-logo img {
        max-width: 130px;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .info-geral-header {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .info-geral-header i {
        font-size: 1.5rem;
    }
    
    .info-geral-header h3 {
        font-size: 1.3rem;
    }
    
    .info-geral-content {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .info-geral-item {
        padding: 1.25rem;
    }
    
    .pacotes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pacote-img-wrapper {
        height: 250px;
    }
    
    .pacote-header {
        padding: 1.5rem;
    }
    
    .pacote-header h3 {
        font-size: 1.5rem;
    }
    
    .pacote-header h4 {
        font-size: 1.1rem;
    }
    
    .pacote-info {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .pacote-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .preco-valor {
        font-size: 1.5rem !important;
    }
    
    .total-valor {
        font-size: 1.3rem !important;
    }
    
    .total-valor-grande {
        font-size: 1.7rem !important;
    }
    
    .pacote-actions {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .btn-whatsapp,
    .btn-reservar {
        width: 100%;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pacote-body {
        padding: 1.5rem;
    }
    
    .pacote .row {
        flex-direction: column;
    }
    
    .pacote .row.flex-row-reverse {
        flex-direction: column-reverse;
    }
    
    .pacote-img-wrapper {
        height: 250px;
    }
    
    .pacote-actions {
        flex-direction: column;
    }
    
    .aviso-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .aviso-icon-wrapper {
        margin: 0 auto;
    }
    
    .aviso-text {
        text-align: center;
    }
    
    .aviso-text h3 {
        font-size: 1.5rem;
    }
    
    .aviso-text p {
        font-size: 1rem;
    }
    
    .pacote-actions .btn {
        width: 100%;
    }
    
    .sobre-subtitle {
        font-size: 1.4rem;
    }
    
    .atividades-list {
        grid-template-columns: 1fr;
    }
    
    .presencas-grid {
        grid-template-columns: 1fr;
    }
    
    .presenca-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    #cd-timeline {
        padding: 1.5em 0;
        margin: 1.5em auto;
    }
    
    .cd-timeline-block {
        margin: 1.5em 0;
    }
    
    .cd-timeline-content {
        padding: 1em;
    }
    
    .cd-timeline-content h2 {
        font-size: 1.1rem;
    }
    
    .cd-timeline-content p {
        font-size: 0.9rem;
    }
    
    .cd-date {
        font-size: 0.8rem;
        position: static;
        display: block;
        margin-top: 0.5em;
    }
    
    .alert {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .entertainment {
        grid-template-columns: 1fr;
    }
    
    .entertainment-item {
        grid-column: span 1;
    }
    
    .entertainment-large {
        grid-column: span 1;
    }
    
    .videos {
        grid-template-columns: 1fr;
    }
    
    .social {
        justify-content: center;
    }
    
    .retiro-header {
        padding: 4rem 0 7rem;
    }
    
    .retiro-header h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .navio-video-section {
        margin-top: 1.5rem;
    }
    
    .navio-video-section h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .navio-video-wrapper {
        padding: 8px;
    }
    
    /* .retiro-wave removed */
        height: 80px;
    }
    
    .retiro-content {
        padding-top: 2.5rem;
    }
    
    .summary-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item-full {
        grid-column: span 1;
    }
    
    .detail-item {
        padding: 1rem;
    }
    
    .sobre-subtitle {
        font-size: 1.2rem;
    }
    
    .atividades-catolicas,
    .presencas-confirmadas {
        padding: 1.25rem;
    }
    
    .atividades-title,
    .presencas-title {
        font-size: 1.1rem;
    }
    
    .presenca-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .sobre-final {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .sobre-oracao {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .hero-logo img {
        height: 104px; /* Aumentado em 30% (de 80px para 104px) */
    }
    
    .pacote-body {
        padding: 1.25rem;
    }
    
    .pacote-body h3 {
        font-size: 1.4rem;
    }
    
    .pacote-body h4 {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .retiro-header {
        padding: 3rem 0 6rem;
    }
    
    .retiro-header h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .navio-video-section {
        margin-top: 1rem;
    }
    
    .navio-video-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .navio-video-wrapper {
        padding: 5px;
    }
    
    .aviso-content {
        padding: 1.5rem;
    }
    
    .aviso-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .aviso-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .aviso-pulse {
        width: 60px;
        height: 60px;
    }
    
    .aviso-text h3 {
        font-size: 1.3rem;
    }
    
    .aviso-text p {
        font-size: 0.95rem;
    }
    
    .btn-aviso {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    /* .retiro-wave removed */
        height: 60px;
    }
    
    .retiro-content {
        padding-top: 2rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20ba5a, #25d366);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    display: block;
    line-height: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
