:root {
    --bg-pink: #fbcce1;
    --white: #ffffff;
    --text-color: #333333;
    --fb-color: #ade1f5;
    --ig-color: #e0cffc;
    --tk-color: #a8e6cf;
    --review-yellow: #f9e79f;
    --shadow: 0 4px 10px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-pink);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    padding: 20px;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 30px;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.header-extra-img {
    width: 180px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.logo:hover, .header-extra-img:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .logo-wrapper {
        gap: 10px;
    }
    
    .logo {
        width: 130px;
    }
    
    .header-extra-img {
        width: 110px;
    }

    .brand-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .logo-wrapper {
        flex-direction: column;
    }
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.logo, .header-extra-img {
    height: auto;
    max-height: 200px; 
    object-fit: contain;
    display: block;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.slogan {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.hashtags {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
}

/* Cards Generales */
.card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.location-card h2 {
    font-size: 1rem;
    color: #e63946;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.location-card address {
    font-style: normal;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-maps {
    display: block;
    background-color: #e1f2fb;
    color: #007bff;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-maps:hover {
    background-color: #d0eaf7;
}

/* Redes Sociales */
.section-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.social-btn {
    text-decoration: none;
    color: var(--text-color);
    padding: 20px 5px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.facebook { background-color: var(--fb-color); }
.instagram { background-color: var(--ig-color); }
.tiktok { background-color: var(--tk-color); }

/* Review Card */
.review-card {
    background-color: var(--review-yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    box-shadow: var(--shadow);
}

.review-content {
    text-align: left;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-top: 5px;
}

.arrow {
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 400px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
}