/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    padding: 1rem 0;
}

nav .container {
    max-width: 96%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box span {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: box-shadow 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-separator {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0 0.125rem;
}

.btn-secondary {
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #2563eb, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-gradient {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gradient:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: #fff;
    color: #9333ea;
    padding: 1rem 2rem;
    border: 2px solid #9333ea;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #faf5ff;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: #fff;
}

.section-gradient {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 50%, #eff6ff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards Grid - Usando Bootstrap grid system */

.card {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.card-alt {
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.card p {
    color: #4b5563;
}

/* Prestadores de Serviços */
.providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.provider-card {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.provider-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.provider-card-alt {
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
}

.provider-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.provider-avatar-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.provider-avatar svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.provider-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.no-providers {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Como Funciona */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

.step-number-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step p {
    color: #4b5563;
}

/* Benefícios - Usando Bootstrap grid system */
.benefits-grid {
    max-width: 900px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #2563eb, #9333ea);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: #fff;
    color: #9333ea;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hdd{
    display: none !important;
}

.btn-white:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Como Funciona Section - Usando Bootstrap grid system */
.como-funciona-container {
    max-width: 1200px;
    margin: 0 auto;
}

.como-funciona-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.como-funciona-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.como-funciona-card-alt {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
}

.como-funciona-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.como-funciona-card-alt .como-funciona-header {
    border-bottom-color: rgba(147, 51, 234, 0.1);
}

.como-funciona-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.como-funciona-icon-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.como-funciona-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.como-funciona-header h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.como-funciona-card-alt .como-funciona-header h3 {
    background: linear-gradient(to right, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.como-funciona-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 0;
}

.como-funciona-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-number-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.como-funciona-actions {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.como-funciona-card-alt .como-funciona-actions {
    border-top-color: rgba(147, 51, 234, 0.1);
}

.btn-como-funciona {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-como-funciona:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-como-funciona:active {
    transform: translateY(0);
}

.btn-como-funciona-alt {
    background: linear-gradient(to right, #9333ea, #2563eb);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.btn-como-funciona-alt:hover {
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.btn-como-funciona svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-como-funciona:hover svg {
    transform: translateX(4px);
}

/* Footer */
footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 0;
    margin-top: auto;
}

/* Footer Grid - Usando Bootstrap grid system */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo span {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

.footer-section h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #60a5fa;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #2563eb;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .como-funciona-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2563eb;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
}

.form-group input.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form styles for page forms (not modal) */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-container .modal-form {
    gap: 1.5rem;
}

.btn-modal {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-modal:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

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

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}

/* Botões do Modal de Seleção de Dashboard */
.btn-dashboard-option {
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-dashboard-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-card {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.dashboard-card-alt {
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
}

.dashboard-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-card-icon-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.dashboard-card-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.dashboard-card-content {
    flex: 1;
}

.dashboard-card-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-card-label {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

.dashboard-card-subtext {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0 0 0;
}

/* Dashboard - Card Único com Lista */
.dashboard-card-single {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    max-width: 50%;
}

.dashboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.dashboard-list-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.dashboard-list-item:not(:last-child) {
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    padding-bottom: 0.75rem;
}

.dashboard-list-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-list-icon-alt {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
}

.dashboard-list-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.dashboard-list-content {
    flex: 1;
}

.dashboard-list-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.125rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-list-label {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

.dashboard-list-subtext {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.125rem 0 0 0;
}

/* Responsive Dashboard */
@media (min-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-card-single {
        padding: 1.75rem;
    }

    .dashboard-list-item {
        padding: 0.875rem;
    }

    .dashboard-list-value {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dashboard-card-single {
        padding: 2rem;
    }

    .dashboard-list-value {
        font-size: 2rem;
    }
}

/* Garçom Layout - Duas Colunas (usando Bootstrap grid) */
.garcom-layout {
    margin-bottom: 4rem;
    --bs-gutter-x: 3rem;
}

.stats-wrapper {
    position: sticky;
    top: 120px;
}

.stats-container {
    padding: 2rem;
}

.stats-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
    text-align: left;
}

/* Reviews Carousel */
.reviews-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.reviews-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
}

.review-card {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 2rem;
    border-radius: 12px;
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.half-star-icon {
    position: relative;
    overflow: hidden;
    width: 1.25rem;
    height: 1.25rem;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-event {
    font-size: 0.875rem;
    color: #6b7280;
}


/* Stepper Form */
.stepper-container {
    max-width: 100%;
    margin: 0;
    padding-top: 5rem;
}

.stepper-header {
    margin-bottom: 2rem;
}

.stepper-indicator {
    position: relative;
    margin-bottom: 2rem;
    height: 4px;
    width: 100%;
}

.stepper-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    z-index: 1;
}

.stepper-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(to right, #2563eb, #9333ea);
    border-radius: 2px;
    z-index: 2;
    transition: width 0.3s ease;
}

.stepper-content {
    position: relative;

}

.stepper-pane {
    display: none;
    animation: fadeIn 0.3s;
}

.stepper-pane.active {
    display: block;
}

.stepper-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-stepper {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-stepper-next {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    margin-left: auto;
}

.btn-stepper-next:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-stepper-prev {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-stepper-prev:hover {
    background-color: #eff6ff;
}

.btn-stepper-submit {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    margin-left: auto;
}

.btn-stepper-submit:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Address Grid Layout (usando Bootstrap grid) */
.address-grid {
    margin-bottom: 1.25rem;
}

.form-group-estado input {
    text-transform: uppercase;
}

/* Responsive Address Grid - Agora usando Bootstrap grid classes */

/* Responsive Stepper */
@media (max-width: 768px) {
    .stepper-indicator {
        height: 3px;
    }

    .stepper-indicator::before,
    .stepper-line {
        height: 3px;
    }

    /* Layout Responsivo */
    .stats-wrapper {
        position: static;
    }

    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .stat-label {
        text-align: left;
    }

    .reviews-carousel {
        padding: 0;
    }

    .review-card {
        min-width: calc(100% - 1rem);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .review-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: calc(100% - 1rem);
    }
}

/* Garçom layout agora usa Bootstrap grid - sem necessidade de media query específica */

/* Perfil Layout */
.perfil-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.perfil-foto-wrapper {
    position: sticky;
    top: 120px;
}

.perfil-info-card {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.perfil-info-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.perfil-foto-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.perfil-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(37, 99, 235, 0.2), transparent);
    margin: 1.5rem 0;
}

.perfil-foto {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.perfil-foto:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
}

.perfil-foto svg {
    width: 100px;
    height: 100px;
    color: #2563eb;
}

.perfil-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.perfil-foto-edit-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #2563eb, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    z-index: 10;
}

.perfil-foto-edit-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.perfil-foto-edit-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.perfil-descricao-wrapper {
    width: 100%;
    margin-top: 0.5rem;
}

.perfil-descricao-wrapper .perfil-form-group {
    width: 100%;
}

.perfil-descricao-wrapper label {
    margin-bottom: 0.75rem;
}

.perfil-descricao-wrapper textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
}

.perfil-form-service {
    width: 100%;
}

/* Select Múltiplo */
.perfil-select-multiple {
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s;
    font-family: inherit;
    background-color: #fff;
    min-height: 70px;
    width: 100%;
}

.perfil-select-multiple:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.perfil-select-multiple option {
    padding: 0.5rem;
}

.perfil-select-multiple option:checked {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
}

.perfil-select-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.btn-foto-perfil {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-foto-perfil:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.perfil-form-wrapper {
    flex: 1;
}

.perfil-form-card {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.perfil-form-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Estilos específicos do formulário de perfil */
.perfil-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}

.perfil-form-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.perfil-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perfil-section-icon {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
}

.perfil-label-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: #2563eb;
}

.perfil-form-group label {
    display: flex;
    align-items: center;
}

.perfil-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
}

.perfil-form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.perfil-form-group input {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.perfil-form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.perfil-form-group input.perfil-error {
    border-color: #ef4444;
}

.perfil-form-group input.perfil-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Estilo para campo de email com badge de verificação */
.perfil-form-group input#email {
    padding-right: 100px;
}

.perfil-form-group select,
.perfil-form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.perfil-form-group select:focus,
.perfil-form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.perfil-form-group select.perfil-error,
.perfil-form-group textarea.perfil-error {
    border-color: #ef4444;
}

.perfil-form-group select.perfil-error:focus,
.perfil-form-group textarea.perfil-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.perfil-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.perfil-form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.btn-perfil {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-perfil-primary {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: #fff;
}

.btn-perfil-primary:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-perfil-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-perfil-secondary:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.btn-perfil-logout {
    background: #fff;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.btn-perfil-logout:hover {
    background: #fee2e2;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

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

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Grid de endereço específico do perfil */
.perfil-address-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.perfil-address-grid .perfil-form-group-estado {
    grid-column: 1;
}

.perfil-address-grid .perfil-form-group-cidade {
    grid-column: 2;
}

.perfil-address-grid .perfil-form-group-bairro {
    grid-column: 3;
}

.perfil-address-grid .perfil-form-group-rua {
    grid-column: 1 / 3;
}

.perfil-address-grid .perfil-form-group-numero {
    grid-column: 3;
}

.perfil-form-group-estado input {
    text-transform: uppercase;
}

/* Responsive Address Grid do Perfil */
@media (max-width: 768px) {
    .perfil-address-grid {
        grid-template-columns: 1fr;
    }

    .perfil-address-grid .perfil-form-group-rua,
    .perfil-address-grid .perfil-form-group-numero {
        grid-column: 1;
    }
}

/* Responsive Perfil */
@media (max-width: 768px) {
    .perfil-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .perfil-foto-wrapper {
        position: static;
    }

    .perfil-info-card,
    .perfil-form-card {
        padding: 1.5rem;
    }

    .perfil-foto-container {
        align-items: center;
    }

    .perfil-foto {
        width: 150px;
        height: 150px;
    }

    .perfil-foto svg {
        width: 75px;
        height: 75px;
    }

    .perfil-foto-edit-icon {
        width: 35px;
        height: 35px;
        bottom: 8px;
        right: 8px;
    }

    .perfil-foto-edit-icon svg {
        width: 18px;
        height: 18px;
    }

    .perfil-section-title {
        font-size: 1rem;
    }

    .perfil-form-actions {
        gap: 0.75rem;
    }

    .perfil-select-multiple {
        min-height: 60px;
        font-size: 0.875rem;
    }
}

/* Eventos Page Styles */
.eventos-hero {
    padding: 4rem 0;
}

.eventos-hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.eventos-hero-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.eventos-hero-icon svg {
    width: 40px;
    height: 40px;
}

.eventos-hero-text {
    flex: 1;
}

.eventos-hero-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.eventos-hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
}

.eventos-card {
    overflow: hidden;
    transition: all 0.3s;
}

.eventos-card-expanded {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-descricao {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.btn-descricao:hover {
    background-color: rgba(37, 99, 235, 0.02);
}

.btn-descricao:active {
    background-color: rgba(37, 99, 235, 0.05);
}

.btn-descricao-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.eventos-card-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    flex-shrink: 0;
}

.eventos-card-icon svg {
    width: 30px;
    height: 30px;
}

.eventos-card-header {
    flex: 1;
}

.eventos-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.eventos-card-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.eventos-descricao {
    display: none;
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.eventos-descricao-content {
    margin-top: 2rem;
}

.eventos-descricao-text {
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1.15rem;
}

.eventos-descricao-text:last-of-type {
    margin-bottom: 2rem;
}

.eventos-info-box {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.eventos-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eventos-info-title svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
}

.eventos-info-list {
    color: #4b5563;
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.eventos-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.eventos-info-badge {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.eventos-info-badge svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.eventos-info-text {
    flex: 1;
}

.eventos-info-text strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.eventos-info-text span {
    display: block;
    margin-bottom: 0.5rem;
}

.eventos-info-text span:last-child {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0;
}

.eventos-acoes {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.eventos-acoes .btn-gradient,
.eventos-acoes .btn-outline {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Responsive Eventos */
@media (max-width: 768px) {
    .eventos-hero {
        padding: 3rem 0;
    }

    .eventos-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .eventos-hero-text .section-title {
        text-align: center;
    }

    .eventos-hero-icon {
        margin: 0 auto;
    }

    .btn-descricao {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-descricao-content {
        width: 100%;
    }

    .accordion-icon {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }

    .eventos-descricao {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .eventos-card-icon {
        width: 50px;
        height: 50px;
    }

    .eventos-card-icon svg {
        width: 25px;
        height: 25px;
    }

    .eventos-acoes {
        flex-direction: column;
    }
}

