/* ================== Fundo e overlay ================== */
.background {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 120%;
    background: url("background.jpg") no-repeat center center;
    background-size: cover;
    z-index: -2;
    transition: transform 0.1s ease-out;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: -1;
}

/* ================== Conteúdo ================== */
.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-top: 4rem;
    padding-bottom: 100px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    text-align: center;
}

/* ================== Header ================== */
header h1, header p {
    opacity: 0;
    transform: translateY(-20px);
    animation: headerFade 1s forwards;
}
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffccd9;
    margin: 0.1rem 0 0.3rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
    animation-delay: 0.2s;
}
header p {
    font-size: 1.2rem;
    color: #ffccd9;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation-delay: 0.4s;
}
@keyframes headerFade {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ================== Resumo do serviço ================== */
.service-summary {
    color: #ffccd9;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
    animation-delay: 0.5s;
}

/* ================== Cartões Glassmorphism ================== */
.glass {
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.12));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.6),
                0 10px 25px rgba(0,0,0,0.3);
    padding: 1.5rem;
    margin: 1rem auto 1.5rem auto;
    max-width: 90%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}
.card:nth-child(2) { animation-delay: 0.6s; }
.card:nth-child(3) { animation-delay: 0.7s; }
.card:nth-child(4) { animation-delay: 0.8s; }
.card:nth-child(5) { animation-delay: 0.9s; }
@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ================== Hover ================== */
.glass:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.6),
                0 12px 30px rgba(0,0,0,0.35);
}

/* ================== Títulos e botões ================== */
.card h2 {
    margin-top: 0;
    color: #ffb6c1;
    font-size: 1.3rem;
}
.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.4rem;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    color: #ffb6c1;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(18px saturate(160%));
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.5),
                0 6px 15px rgba(0,0,0,0.2);
    transition: 0.25s;
}
.btn:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25));
    transform: scale(1.02);
}

/* ================== Tabelas ================== */
.price-table {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}
.price-table.show {
    max-height: 1000px;
    opacity: 1;
}
.price-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(25px);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.price-table th, .price-table td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.price-table th {
    background: rgba(255,255,255,0.25);
    font-weight: 600;
}
.price-table tr:last-child td {
    border-bottom: none;
}

/* ================== Footer ================== */
footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
}

/* ================== Botão flutuante de contato ================== */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}
.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.6rem;
    text-decoration: none;
    color: #ffb6c1;
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 2px 3px rgba(255,255,255,0.6),
                0 10px 25px rgba(0,0,0,0.3);
    transition: 0.25s, transform 0.25s;
    position: relative;
}
.floating-btn:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25));
    transform: scale(1.1);
}
.btn-text {
    font-size: 0.7rem;
    margin-top: 2px;
    color: #ffb6c1;
}

/* ================== Estilo iframe mapa ================== */
.price-table iframe {
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    width: 100%;
    max-width: 450px;
    height: 200px;
}