.google-business-section {
        background-image: url('/img/background-google-business.jpeg');
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;

}

/* El contenido (content-box, badge, btn-primary, etc.) 
   ya está definido y se verá perfecto aquí. */
.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badge {
    color: #4D57FF;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-box h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #1A1A1A;
}

.content-box p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #4D57FF;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.gb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gb-content h2 { font-size: 3rem; margin: 20px 0; line-height: 1.1; }
.gb-content p { color: #A0A5B5; font-size: 1.1rem; margin-bottom: 30px; }

/* Marco del teléfono */
.phone-frame {
    background: #16171A;
    padding: 15px;
    border-radius: 40px;
    border: 2px solid #2A2A2A;
    box-shadow: 0 0 50px rgba(77, 87, 255, 0.15); /* Efecto de brillo sutil */
    transform: rotate(-5deg);
}

.screen-content img {
    width: 100%;
    border-radius: 30px;
    filter: brightness(0.9);
}

/* Adaptación móvil */
@media (max-width: 992px) {
    .gb-grid { grid-template-columns: 1fr; text-align: center; }
    .phone-frame { transform: rotate(0); }
}
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4D57FF 0%, #363bb5 100%);
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(77, 87, 255, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(77, 87, 255, 0.7);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #5b64ff 0%, #464ccc 100%);
}

.btn-primary-glow:active {
    transform: translateY(0);
}