/* Estilos Premium para a Home */
:root {
    --gold-primary: #ffc107;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
}

.hero-premium {
    /* Recomendado: baixar esta imagem e hospedar em assets/img/hero-bg.jpg
       em vez de usar hotlink do Unsplash (mais rápido e não depende de terceiros) */
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* background-attachment: fixed causa travamentos de rolagem e não
   funciona corretamente em iOS Safari — desativado em telas menores */
@media (max-width: 991px) {
    .hero-premium {
        background-attachment: scroll;
    }
}

.hero-premium__content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.hero-premium__content h1 span {
    color: var(--gold-primary);
    display: block;
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.hero-premium__content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

.btn-gold {
    background-color: var(--gold-primary);
    color: #000;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.service-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold-primary);
}

.service-box__icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-box:hover .service-box__icon {
    transform: scale(1.1) rotate(5deg);
}

.section-title-wrap h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gold-line {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.about-premium__image {
    position: relative;
    padding: 20px;
}

.about-premium__image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border: 15px solid var(--gold-primary);
    z-index: -1;
    border-radius: 20px;
}

.about-premium__image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.stats-strip {
    background: var(--dark-bg);
    padding: 80px 0;
    color: #fff;
}

.stats-strip__item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.stats-strip__item strong {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 5px;
}

.stats-strip__item span {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.diff-item {
    text-align: center;
    padding: 30px 15px;
    transition: all 0.3s ease;
}

.diff-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    background: #fff9e6;
    border-radius: 50%;
}

.diff-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-premium__box {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #ffdb70 100%);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(255,193,7,0.3);
}

.contact-premium__info {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-row i {
    width: 50px;
    height: 50px;
    background: #fff9e6;
    color: var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-whatsapp {
    width: 100%;
    margin-top: 20px;
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.contact-whatsapp:hover {
    background: transparent;
    color: #25d366;
    border-color: #25d366;
}

@media (max-width: 991px) {
    .hero-premium__content h1 { font-size: 3rem; }
    .cta-premium__box { flex-direction: column; text-align: center; }
    .cta-premium__box a { margin-top: 30px; }
}
