/* --- LAYOUT GERAL --- */
body {
    
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0 16px;
}

h1, h2, h3, .title {
    font-family: 'Montserrat', sans-serif;
}

p, .text {
    
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 10px;
}

/* --- GRID DE CARDS --- */
#lista-pacotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* --- CARD --- */
.card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.card-img {
    position: relative;
    height: 220px;
}

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

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

/* --- TAGS --- */
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff3d00, #ff9100);
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 12px;
}

.tag2 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #0084ff, #00c6ff);
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 12px;
}

/* --- CONTEÚDO --- */
.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 0;
    font-size: 20px;
    color: #1a2a6c;
}

.card-content p {
    color: #555;
    font-size: 14px;
    margin: 8px 0 15px 0;
    line-height: 1.5em;
}

/* --- PREÇOS --- */
.pricing {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #b00;
    font-size: 14px;
}

.new-price {
    display: block;
    font-size: 26px;
    color: #0077b6;
    margin-top: -5px;
    font-weight: bold;
}

/* --- BOTÃO --- */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #0077b6, #00b4db);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: transform .2s ease, box-shadow .3s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(26,115,232,0.4);
}
