/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores temáticas gaúchas */
    --primary-color: #D2691E;      /* Laranja terroso */
    --secondary-color: #8B4513;    /* Marrom */
    --accent-color: #228B22;       /* Verde campo */
    --warm-color: #CD853F;         /* Peru */
    --light-bg: #FFF8DC;           /* Cor de palha */
    --dark-bg: #2F1B14;            /* Marrom escuro */
    --text-dark: #3C2415;          /* Texto escuro */
    --text-light: #8B7355;         /* Texto claro */
    --white: #FFFFFF;
    --shadow: rgba(139, 69, 19, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 220, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header - Mobile */
.header .container {
    padding: 0.8rem 15px;
}

.logo h2 {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
}

.logo .subtitle {
    font-size: 0.7rem;
    margin-left: 0;
}

.nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 15px;
}

/* Header - Tablet */
.header .container {
    padding: 0.9rem 20px;
}

.logo h2 {
    font-size: 1.6rem;
}

.nav {
    gap: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.gaita-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gaita-animation .note1,
.gaita-animation .note2,
.gaita-animation .note3 {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.note1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.note2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.note3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-title .dancing {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.subtitle-hero {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gaita-illustration {
    position: relative;
    text-align: center;
}

.gaita-icon {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.8;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.musical-notes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

.musical-notes span {
    position: absolute;
    animation: noteFloat 2s ease-in-out infinite;
}

.musical-notes span:nth-child(1) { top: -60px; left: -30px; animation-delay: 0s; }
.musical-notes span:nth-child(2) { top: -30px; left: 60px; animation-delay: 0.5s; }
.musical-notes span:nth-child(3) { top: 60px; left: 30px; animation-delay: 1s; }
.musical-notes span:nth-child(4) { top: 30px; left: -60px; animation-delay: 1.5s; }

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-10px); opacity: 1; }
}

/* Hero Image Styles */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.artist-image {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.artist-image:hover {
    transform: scale(1.02);
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.photo-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.photo-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.photo-placeholder small {
    font-size: 12px;
    opacity: 0.8;
}

/* Hero Photo Styles */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-container:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--white);
    text-align: center;
    padding: 40px;
}

.photo-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.photo-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.photo-note {
    font-size: 14px;
    opacity: 0.8;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Profile Section */
.profile-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 5rem 0;
    position: relative;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--warm-color) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.photo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.photo-note {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.profile-img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 4px solid var(--white);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.profile-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', cursive;
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: justify;
}

.specialties h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.4);
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 4rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Request Section */
.request-section {
    background: var(--white);
    padding: 3rem 0;
}

.request-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.request-form-container {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--warm-color);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--primary-color);
}

.form-header h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid var(--warm-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(210, 105, 30, 0.2);
}

.form-options {
    margin: 1rem 0;
}

.checkbox-group {
    margin-bottom: 0.6rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.checkbox-label:hover {
    background: rgba(210, 105, 30, 0.08);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
}

.checkbox-label .text {
    font-weight: 500;
    color: var(--text-dark);
}

/* Recent Requests */
.recent-requests {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--warm-color);
}

.recent-requests h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.request-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.request-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.request-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.request-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.request-info small {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.8rem;
}

.request-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.request-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.request-status.completed {
    background: var(--accent-color);
    color: var(--white);
}

.request-status.pending {
    background: #FFA500;
    color: var(--white);
}

.request-status.in-progress {
    background: var(--primary-color);
    color: var(--white);
}

.request-style {
    background: var(--warm-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Support Section */
.support-section {
    background: var(--light-bg);
    padding: 3rem 0;
}

.support-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.tip-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.tip-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--warm-color);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.tip-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--primary-color);
}

.tip-header h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tip-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.tip-btn {
    padding: 1rem;
    border: 1px solid var(--primary-color);
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.tip-btn:hover,
.tip-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.tip-btn.popular {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--white);
}

.tip-btn.popular .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4500;
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.tip-btn i {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.tip-btn .amount {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.tip-btn .desc {
    font-size: 0.8rem;
    opacity: 0.8;
}

.custom-amount {
    margin-bottom: 1.5rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-input {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.custom-input input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--warm-color);
    border-radius: 8px;
    font-size: 0.9rem;
}

.payment-info {
    border-top: 2px solid var(--warm-color);
    padding-top: 1.5rem;
}

/* Tip Form Styles */
.tip-form {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 248, 220, 0.5);
    border-radius: 15px;
    border: 2px solid var(--warm-color);
}

.tip-form .form-group {
    margin-bottom: 1.5rem;
}

.tip-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-form input,
.tip-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--warm-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.tip-form input:focus,
.tip-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.tip-form textarea {
    resize: vertical;
    min-height: 80px;
}

.tip-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Payment Methods - PIX Only */
.payment-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid var(--warm-color);
}

.payment-info h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.payment-item.pix-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
    transition: all 0.3s ease;
    min-width: 200px;
}

.payment-item.pix-only:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.pix-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.payment-item.pix-only span {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.payment-item.pix-only small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.payment-security {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.payment-security i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.contact-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-link .fab.fa-whatsapp {
    color: #25D366;
}

.contact-link .fas.fa-envelope {
    color: #EA4335;
}

.contact-link .fab.fa-instagram {
    color: #E4405F;
}

.contact-link .fab.fa-youtube {
    color: #FF0000;
}

.contact-link span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.contact-link span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Supporters Section */
.supporters {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--warm-color);
}

.supporters h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.supporters h3 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.supporters-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.supporter-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 248, 220, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(210, 105, 30, 0.1);
    transition: all 0.3s ease;
}

.supporter-item:hover {
    background: rgba(255, 248, 220, 0.5);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.supporter-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.supporter-info {
    flex: 1;
    min-width: 0;
}

.supporter-info h4 {
    margin: 0 0 0.2rem 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.supporter-info p {
    margin: 0 0 0.2rem 0;
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.3;
}

.supporter-info small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.supporter-amount {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.footer-quote {
    text-align: center;
    font-style: italic;
}

.footer-quote p:first-child,
.footer-quote p:last-child {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.footer-quote p:nth-child(2) {
    font-size: 1.2rem;
    margin: 1rem 0;
    font-family: 'Dancing Script', cursive;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 3px solid var(--primary-color);
}

.modal-content.success {
    text-align: center;
}

.success-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.success-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--secondary-color);
}

/* Estilos para QR Code PIX */
.qr-code-container {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px var(--shadow);
    text-align: center;
    margin-bottom: 2rem;
    border: 3px solid var(--primary-color);
}

.qr-code-header h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.qr-code-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.qr-code-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.qr-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border: 4px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px var(--shadow);
}

.pix-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px dashed var(--primary-color);
    width: 100%;
    max-width: 400px;
}

.pix-key {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 2px solid var(--primary-color);
    word-break: break-all;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.support-message {
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 10px;
}

.support-message p {
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Responsivo para QR Code */
@media (max-width: 768px) {
    .qr-code-container {
        padding: 1.5rem;
    }
      .qr-image {
        max-width: 280px;
    }
    
    .pix-info {
        padding: 1rem;
    }
    
    .pix-key {
        font-size: 1rem;
        padding: 0.6rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-title .dancing {
        font-size: 3rem;
    }
    
    .subtitle-hero {
        font-size: 1.1rem;
    }
    
    .artist-image {
        max-height: 300px;
    }
    
    .photo-placeholder {
        padding: 30px;
    }
    
    .photo-placeholder i {
        font-size: 50px;
    }
    
    .photo-placeholder p {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }    /* Contact Section - Tablet */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .contact-link {
        padding: 1rem;
    }

    /* Hero Image - Tablet */
    .artist-image {
        max-height: 350px;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title .dancing {
        font-size: 2.5rem;
    }
    
    .subtitle-hero {
        font-size: 1rem;
    }
    
    .artist-image {
        max-height: 250px;
    }
    
    .photo-placeholder {
        padding: 20px;
    }
    
    .photo-placeholder i {
        font-size: 40px;
    }
    
    .photo-placeholder p {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }
      .tip-amounts {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .tip-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .tip-btn i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .tip-btn .amount {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .tip-btn .desc {
        font-size: 0.8rem;
    }
    
    .tip-container {
        padding: 1.5rem;
    }
    
    .custom-input {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .payment-item.pix-only {
        min-width: 150px;
        padding: 1.5rem;
    }
    
    .pix-icon {
        font-size: 2rem;
    }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-item i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
      .request-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }    /* Contact Section - Mobile */
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 300px;
    }
    
    .contact-link {
        padding: 0.8rem 0.5rem;
    }
    
    .contact-link i {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-link span {
        font-size: 0.7rem;
    }

    /* Hero - Mobile */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-title .dancing {
        font-size: 3rem;
    }
    
    .subtitle-hero {
        font-size: 1.1rem;
    }
    
    .artist-image {
        max-height: 300px;
    }
    
    .photo-placeholder {
        padding: 30px;
    }
    
    .photo-placeholder i {
        font-size: 50px;
    }
    
    .photo-placeholder p {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .header .container {
        padding: 0.8rem 15px;
    }
    
    .logo h2 {
        font-size: 1.4rem;
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
    }
    
    .logo .subtitle {
        font-size: 0.7rem;
        margin-left: 0;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
}

/* Extra small devices (muito pequenos) */
@media (max-width: 350px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .contact-link {
        padding: 1rem;
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .contact-link i {
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    
    .artist-image {
        max-height: 220px;
    }
    
    /* Header extra small */
    .header .container {
        padding: 0.6rem 10px;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Forms extra small */
    .request-form-container,
    .tip-container {
        padding: 1rem;
        margin: 0 -10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .tip-amounts {
        grid-template-columns: 1fr;
    }
}

/* Large desktop screens */
@media (min-width: 1400px) {
    .contact-grid {
        max-width: 700px;
        gap: 1.5rem;
    }
    
    .contact-link {
        padding: 1.5rem;
    }
    
    .contact-link i {
        font-size: 1.8rem;
    }
    
    .contact-link span {
        font-size: 0.9rem;
    }
    
    .artist-image {
        max-height: 500px;
    }
}

/* Desktop - telas grandes - estilos minimalistas */
@media (min-width: 1200px) {
    .request-form-container,
    .tip-container {
        max-width: 450px;
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .form-header h3 {
        font-size: 1rem;
    }
    
    .tip-header h3 {
        font-size: 1rem;
    }
    
    .tip-btn {
        padding: 0.8rem;
    }
    
    .tip-btn i {
        font-size: 1rem;
    }
    
    .tip-btn .amount {
        font-size: 0.9rem;
    }
    
    .tip-btn .desc {
        font-size: 0.75rem;
    }
    
    .checkbox-label {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    .custom-input input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 9px 22px;
        font-size: 0.85rem;
    }
}

/* Popup simples para copiar PIX */
.simple-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Botão copiar PIX */
.btn.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.btn.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2);
}

/* Estilo melhorado para o botão de copiar PIX */
.btn-copy-pix {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

.btn-copy-pix:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-copy-pix:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

/* Popup centralizado com overlay */
.pix-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pix-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pix-popup {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid var(--primary-color);
    transform: scale(0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pix-popup-overlay.active .pix-popup {
    transform: scale(1);
}

.pix-popup i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Centralizar QR Code em telas menores */
@media (max-width: 768px) {
    .support-content-centered {
        padding: 0 15px;
    }
    
    .pix-popup {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Searchable Select Styles */
.searchable-select-container {
    position: relative;
    width: 100%;
}

.searchable-select-container input {
    width: 100%;
    padding: 0.7rem 2.5rem 0.7rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    transition: all 0.3s ease;
}

.searchable-select-container input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.searchable-select-container input:hover {
    border-color: #c4956c;
}

.dropdown-icon {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.searchable-select-container.open .dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    padding: 0.7rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 0.9rem;
}

.dropdown-option:hover,
.dropdown-option.highlighted {
    background-color: #f8f9fa;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.no-results {
    padding: 0.7rem;
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.85rem;
}

/* Scrollbar customizada para dropdown */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsividade */
@media (max-width: 1200px) {
    .searchable-select-container input {
        padding: 0.6rem 2.2rem 0.6rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .dropdown-option {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .dropdown-options {
        max-height: 180px;
    }
}

@media (max-width: 480px) {
    .searchable-select-container input {
        padding: 0.6rem 2rem 0.6rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .dropdown-icon {
        right: 0.6rem;
    }
    
    .dropdown-option {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .dropdown-options {
        max-height: 150px;
    }
}

/* Estilos adicionais para formulário desativado e interruptor de configuração */
.form-disabled {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    background-color: #f9f9f9;
}

.form-disabled-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.form-disabled-message i {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.form-disabled-message p {
    color: #666;
    margin: 5px 0;
    font-size: 1.1rem;
}

.config-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.config-toggle .config-status {
    display: flex;
    align-items: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #8B4513;
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #8B4513;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.form-disabled-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.form-disabled-warning i {
    margin-right: 8px;
    color: #f0ad4e;
}

