/*-----------------------------------------------------------------
    Rest In Paris — Custom Styles
    Estilos próprios do site, separados do template (main.css).
------------------------------------------------------------------*/

/*=== Botão WhatsApp (base — apartamentos) ===*/
.whatsapp-reserve {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s, transform 0.2s;
}
.whatsapp-reserve:hover {
    background-color: #1ebe5b;
    color: #fff !important;
}
.whatsapp-reserve i { font-size: 22px; }

/* Versão maior usada no CTA da página de serviços */
.cta-whatsapp-section .whatsapp-reserve {
    padding: 16px 36px;
    font-size: 20px;
    margin-top: 0;
}
.cta-whatsapp-section .whatsapp-reserve:hover { transform: translateY(-2px); }
.cta-whatsapp-section .whatsapp-reserve i { font-size: 24px; }

/*=== Tag de preço (apartamentos) ===*/
.price-tag {
    display: inline-block;
    background: #c8a96e;
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 18px;
}

/*=== Badges de informações (apartamentos) ===*/
.apt-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 20px;
}
.apt-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f5f0e8;
    color: #3d3d3d;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #e0d6c0;
}
.apt-info-badge i { color: #c8a96e; font-size: 14px; }

/*=== Home — preços e botões dos cards ===*/
.card-price {
    font-size: 17px;
    font-weight: 700;
    color: #c8a96e;
    margin: 10px 0 6px;
    display: block;
}
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.btn-saiba {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: transparent;
    border: 2px solid #c8a96e;
    color: #c8a96e !important;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-saiba:hover { background: #c8a96e; color: #fff !important; }
.btn-reservar {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: #25D366;
    color: #fff !important;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-reservar:hover { background: #1ebe5b; color: #fff !important; }

/*=== Página de serviços ===*/
/* Cards de serviço */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    border-bottom-color: #c8a96e;
}
.service-card .icon {
    width: 72px;
    height: 72px;
    background: #f8f3eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.service-card .icon img {
    width: 38px;
    height: 38px;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a2e;
}
.service-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* Seção de introdução */
.services-intro {
    background: #f8f3eb;
    padding: 80px 0;
}
.services-intro .sub-title {
    display: inline-block;
    color: #c8a96e;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 16px;
}
.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 24px;
}
.services-intro p.lead-text {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    max-width: 560px;
}
.intro-stat {
    border-left: 3px solid #c8a96e;
    padding-left: 20px;
    margin-top: 32px;
}
.intro-stat h4 {
    font-size: 36px;
    font-weight: 800;
    color: #c8a96e;
    margin: 0;
}
.intro-stat span {
    font-size: 14px;
    color: #888;
    display: block;
    margin-top: 4px;
}

/* Grade de serviços */
.services-grid-section {
    padding: 90px 0;
    background: #fff;
}

/* Seção "A nossa diferença" */
.difference-section {
    background: #1a1a2e;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.difference-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/servicos.jpg') center/cover no-repeat;
    opacity: 0.08;
}
.difference-section .content { position: relative; z-index: 1; }
.difference-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    transition: background 0.3s;
}
.difference-card:hover {
    background: rgba(200,169,110,0.12);
}
.difference-card i {
    font-size: 36px;
    color: #c8a96e;
    margin-bottom: 18px;
    display: block;
}
.difference-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.difference-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* CTA WhatsApp */
.cta-whatsapp-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    padding: 90px 0;
    text-align: center;
}
.cta-whatsapp-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cta-whatsapp-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-top: 20px;
    text-decoration: none;
}
.cta-phone:hover { color: #c8a96e; }

/* Faixa de comodidades */
.amenities-strip {
    background: #f8f3eb;
    padding: 60px 0;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}
.amenity-item .icon-wrap {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.amenity-item .icon-wrap img {
    width: 30px;
}
.amenity-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.amenity-item p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}
