:root {
    --pa-primary: #005f9e;
    --pa-secondary: #3cc0ed;
    --pa-accent: #ea4e1b;
    --pa-light-gray: #f8f9fa;
    --pa-text: #333;
    --pa-text-light: #6c757d;
    --pa-white: #fff;
    --pa-success: #198754;
    --pa-danger: #dc3545;
}

body.pescaria-avulsa-detalhe {
    background-color: var(--pa-white);
}

.pa-hero-section {
    background-color: var(--pa-primary);
    color: var(--pa-white);
    padding: 60px 0 120px; /* Aumenta o padding inferior para a curva */
    position: relative;
    overflow: hidden;
}

.pa-hero-section::after { /* Alterado de ::before para ::after para ficar sobre o conteúdo */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px; /* Altura da curva */
    background: var(--pa-white);
    border-radius: 100% / 50px; /* Cria a curva */
    transform: translateY(50%);
}

.pa-hero-badges .badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pa-white);
    padding: 0.5em 1em;
    font-weight: 500;
}

.pa-hero-badges .badge.premium {
    background-color: var(--pa-accent);
    border-color: var(--pa-accent);
}

.pa-hero-info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.pa-hero-info-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pa-info-card {
    background: var(--pa-white);
    border: 1px solid #dee2e6;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
}

.pa-info-card .badge {
    background-color: var(--pa-primary);
    color: var(--pa-white);
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.pa-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pa-info-item {
    background: var(--pa-light-gray);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.pa-info-item i {
    font-size: 1.5rem;
    color: var(--pa-secondary);
    margin-bottom: 0.5rem;
}

.pa-info-item .label {
    font-size: 0.8rem;
    color: var(--pa-text-light);
    margin-bottom: 0.25rem;
}

.pa-info-item .value {
    font-weight: 600;
    color: var(--pa-primary);
}

.pa-section {
    padding: 60px 0;
}

.pa-section.bg-light {
    background-color: var(--pa-light-gray);
}

.pa-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.pa-section-title h2 {
    font-size: 2.5rem;
    color: var(--pa-primary);
}

.pa-section-title p {
    color: var(--pa-text-light);
}

.pa-included-section .col-md-6 {
    padding: 1.5rem;
    border-radius: 1rem;
}

.pa-included-section .included-card {
    border: 2px solid var(--pa-success);
    background-color: #f0fff8;
}

.pa-included-section .not-included-card {
    border: 2px solid var(--pa-danger);
    background-color: #fff5f5;
}

.pa-included-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pa-included-section .included-card h5 {
    color: var(--pa-success);
}

.pa-included-section .not-included-card h5 {
    color: var(--pa-danger);
}

.pa-included-section ul {
    list-style: none;
    padding-left: 0;
}

.pa-included-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pa-included-section ul li i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.pa-included-section .included-card ul li i {
    color: var(--pa-success);
}

.pa-included-section .not-included-card ul li i {
    color: var(--pa-danger);
}

.pa-feature-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    background: var(--pa-white);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Conheça o Barco Section */
.pa-conheca-barco-section {
    padding: 60px 0;
}
.pa-conheca-barco-section .img-fluid {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
}
.pa-feature-card-alt {
    background: var(--pa-white);
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pa-feature-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08);
}
.pa-feature-card-alt i {
    font-size: 2rem;
    color: var(--pa-secondary);
}

/* Depoimentos Section */
.pa-depoimentos-section {
    padding: 60px 0;
    background-color: var(--pa-light-gray);
}
.pa-depoimento-card {
    background: var(--pa-white);
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
    height: 100%;
}
.pa-depoimento-card .stars {
    color: var(--pa-accent);
    margin-bottom: 1rem;
}
.pa-depoimento-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}
.pa-depoimento-card .client-name {
    font-weight: 600;
    color: var(--pa-primary);
    margin-top: 1rem;
}
.pa-depoimento-card .client-verified {
    font-size: 0.8rem;
    color: var(--pa-text-light);
}

.pa-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08);
}

.pa-feature-card i {
    font-size: 2.5rem;
    color: var(--pa-secondary);
    margin-bottom: 1rem;
}

/* Sticky Banner */
.pa-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid #eee;
}

.pa-sticky-banner.visible {
    transform: translateY(0);
}

.pa-sticky-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pa-sticky-banner-info {
    display: flex;
    flex-direction: column;
}

.pa-sticky-banner-title {
    font-weight: 700;
    color: var(--pa-primary);
    font-size: 1.1rem;
    margin: 0;
}

.pa-sticky-banner-subtitle {
    font-size: 0.9rem;
    color: var(--pa-text-light);
    margin: 0;
}

.pa-sticky-banner .btn {
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(23, 162, 184, 0.3);
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .pa-sticky-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .pa-sticky-banner-info {
        display: none; /* Oculta info em mobile para economizar espaço, ou ajuste conforme necessário */
    }
    
    .pa-sticky-banner .btn {
        width: 100%;
    }
}