/* Reset & Variables */
:root {
    --bg-color: #000000;
    /* Pure Black */
    --card-bg: #111111;
    --surface-color: #1a1a1a;

    --primary-color: #D4A574;
    /* Wood Brown - Carvalho claro */
    --primary-hover: #B8946A;
    --accent-color: #D4A574;

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;

    --border-radius: 16px;
    --btn-radius: 12px;

    --shadow-soft: 0 4px 20px rgba(212, 165, 116, 0.15);
    --shadow-glow: 0 0 15px rgba(212, 165, 116, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 0;
}

/* Container limits width for mobile app feel */
.card-container {
    width: 100%;
    max-width: 420px;
    background-color: #111111;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
}

/* Header */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.avatar-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
    font-size: 3rem;
    color: var(--text-secondary);
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.profile-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.img-barbearia {
    display: flex;
    width: 300px;
    height: 250px;
    justify-content: center;
    align-items: center;
    /* gap: 16px; */
}

.img-barbearia img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.action-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Save Contact Button */
.save-contact-section {
    padding: 0 10px;
}

.save-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.save-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.save-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
}

.save-btn:hover::before {
    transform: translateX(100%);
}

.save-btn-content {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.save-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.save-text {
    display: flex;
    flex-direction: column;
}

.st-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.st-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.arrow-icon {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.7;
}

/* Services */
.services-section {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.section-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-color);
    padding-left: 10px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-icon {
    color: var(--accent-color);
    font-size: 1.4rem;
    display: flex;
    /* Fix alignment */
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    border-radius: var(--btn-radius);
    overflow: hidden;
    background-color: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}


/* CTA Section */
.cta-section {
    text-align: center;
}

.main-cta-btn {
    display: inline-block;
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.main-cta-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* Footer */
footer {
    margin-top: 10px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0.6;
}


.address-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.address-section i {
    font-size: 2rem;
    color: var(--primary-color);
}

.address-text {
    text-align: center;
    line-height: 1.6;
}

.address-text strong {
    color: var(--text-primary);
}