body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    padding-top: 50px;
    margin: 0;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
    gap: 15px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.top-bar {
    width: 100%;
    height: 50px;
    background-color: #e74c3c;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar p {
    margin: 0;
    animation: blink 1.5s linear infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

.logo {
    max-width: 220px;
    max-height: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    animation: goldGlow 2s ease-in-out infinite;
}

@keyframes goldGlow {
    0% { filter: drop-shadow(0 0 4px rgba(255,200,0,0.4)); }
    50% { filter: drop-shadow(0 0 20px rgba(255,200,0,1)); }
    100% { filter: drop-shadow(0 0 4px rgba(255,200,0,0.4)); }
}

.logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: shineMove 2.8s infinite;
}

@keyframes shineMove {
    0% { left: -160%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.logo-link {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.info-text {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-text .line1 {
    font-weight: 700;
    font-size: 1.3em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text .line2 {
    font-size: 1.1em;
    color: #666;
    margin-top: 5px;
}

.quality-icon {
    color: #fbc02d;
    font-size: 0.9em;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
}

.button {
    width: 100%;
    text-decoration: none;
    color: #fff;
    padding: 20px 10px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

.whatsapp {
    background-color: #25d366;
    flex-direction: column;
    padding: 25px 10px;
}

.whatsapp .fa-whatsapp {
    font-size: 90px;
    margin-bottom: 10px;
}

.whatsapp .numero {
    font-size: 1.1em;
    font-weight: 700;
}

.facebook,
.instagram,
.maps {
    padding: 20px 10px;
}

.social-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.social-inline i {
    font-size: 22px !important;
    margin: 0;
}

.social-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.facebook {
    background-color: #1877f2;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.maps {
    background-color: #ea4335;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { filter: drop-shadow(0 0 2px rgba(0,149,246,0.4)); }
    50% { filter: drop-shadow(0 0 8px rgba(0,149,246,1)); }
    100% { filter: drop-shadow(0 0 2px rgba(0,149,246,0.4)); }
}

.verified-badge svg {
    width: 100%;
    height: 100%;
    display: block;
}

.facebook .verified-badge circle,
.instagram .verified-badge circle {
    fill: #0095f6;
}

.facebook .verified-badge path,
.instagram .verified-badge path {
    fill: #ffffff;
}

.google-rating {
    text-align: center;
    background: #fff;
    padding: 18px 12px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.google-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.google-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.stars {
    font-size: 28px;
    color: #f4c542;
    letter-spacing: 3px;
    margin-bottom: 5px;
    animation: glowStars 1.8s ease-in-out infinite;
}

@keyframes glowStars {
    0% { text-shadow: 0 0 4px rgba(255,215,0,0.3); transform: scale(1); }
    50% { text-shadow: 0 0 12px rgba(255,215,0,0.7); transform: scale(1.05); }
    100% { text-shadow: 0 0 4px rgba(255,215,0,0.3); transform: scale(1); }
}

.rating-text {
    font-size: 15px;
    color: #444;
    font-weight: 600;
}

footer {
    width: 100%;
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
}

footer p {
    margin: 3px 0;
}

footer .address {
    font-size: 0.9em;
    font-weight: 500;
    color: #bdc3c7;
}
