/* @charset "UTF-8"; */
:root {
    /* Cores */
    --primary: #2c3e50;
    --primary-dark: #1a252f;
    --primary-light: #3d566e;
    --secondary: #3498db;
    --secondary-dark: #2980b9;
    --accent: #e74c3c;
    --accent-dark: #c0392b;
    --light: #ecf0f1;
    --dark: #1a252f;
    --gray: #95a5a6;
    --gray-light: #bdc3c7;
    --gray-dark: #7f8c8d;
    --white: #ffffff;
    --black: #000000;
    
    /* Texto */
    --text: #333333;
    --text-light: #7f8c8d;
    --text-on-dark: #ffffff;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.25);
    
    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Espaçamentos */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transições */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Botões */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: clamp(.85rem, 2.5vw, 1.1rem);
    /* font-size: 1.1rem; */
}

/* Barra de Navegação */
.header-site-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f5f7fa;
    overflow-x: hidden;
}

.main-content {
    max-width: unset !important;
    margin: 0 auto;
    /* padding: 0 20px; */
}


/* Barra de progresso do topo */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--secondary);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    overflow: hidden;
}
/*
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: url('/imagem/polihos-banner_1200.webp') no-repeat center;
    background-size: cover;
    opacity: 0.1;
}
*/

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-logo img {
    border-radius: 50%;
    /* border: 4px solid var(--secondary); */
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: #333 10px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 2.5vw, 3.5rem);
    /* font-size: 3.5rem; */
    font-weight: 700;
    margin-top: 1rem;
    background: linear-gradient(to right, var(--light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--light);
    margin-top: 0.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.main-content .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-content .social-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    /* border-radius: 50px; */
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.main-content .social-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.main-content .social-button.patreon {
    background-color: #FF424D;
}

.main-content .social-button.discord {
    background-color: #5865F2;
}

.main-content .social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.hero-description {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    /* font-size: 1.2rem; */
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
}
/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: calc(var(--space-lg) + 70px);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Loading spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto var(--space-md);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Quick Links Section */
.quick-links-section {
    padding: 4rem 0;
    background-color: white;
}

.quick-frame-links {
    padding: 4rem 0;
    /* background-color: white; */
    background: linear-gradient(0deg, #ffffff 30%, #1a252f85 100%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    /* font-size: 2.5rem; */
    /* color: var(--primary); */
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    /* font-size: 1.2rem; */
    /* color: var(--text-light); */
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-card {
    background: white;
    /* border-radius: 10px; */
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quick-link-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    /* font-size: 1.5rem; */
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.quick-link-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
}

.quick-link-list {
    list-style: none;
}

.quick-link-list li {
    margin-bottom: 0.75rem;
}

.quick-link-list li:last-child {
    margin-bottom: 0;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.quick-link::before {
    content: '→';
    color: var(--secondary);
    transition: var(--transition);
}

.quick-link:hover {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
    padding-left: 5px;
}

.quick-link:hover::before {
    transform: translateX(3px);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-card .quick-link-title {
    color: white;
}

.cta-card .quick-link-title::after {
    background: var(--secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    /* font-size: 1.1rem; */
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-subtext {
    color: rgba(255,255,255,0.8);
    font-size: clamp(.8rem, 2.5vw, .9rem);
    /* font-size: 0.9rem; */
}
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--space-xl);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about .container {
        grid-template-columns: 1fr;
        display: flex !important;
        flex-wrap: wrap;
    }
    
    .about-image {
        order: -1;
    }
}

.text-link {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.text-link:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #f5f7fa;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    /* overflow: hidden; */
    box-shadow: var(--shadow-lg);
}

.world-map {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #e8eef3;
    background: url('/imagem/polihos-misto.webp');
    background-size: cover;
    background-position: center;
}

#map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 80%), transparent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    /* font-size: 1.1rem; */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.map-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.map-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/*DO MAPA - interativo*/
/* Map Section */
    .map-section {
        padding: 3rem 1rem;
        background-color: #2c3e50;
        color: white;
    }
    
    .map-section #map-pai {
        width: 100%;
        height: 600px;
        position: relative;
    }

    .map-section #map {
        width: 100%;
        height: 100%;
        /* background-color: #f5f5f5; */
    }

    /* Estilo para a caixa de informação */
    .map-section .info {
        padding: 6px 12px;
        font: 14px/16px Arial, Helvetica, sans-serif;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        min-width: 200px;
    }

    .map-section .info h3, 
    .map-section .info h4 {
        margin: 0 0 5px;
        color: #333;
        font-size: clamp(.8rem, 2.5vw, .9rem);
        /* font-size: 14px; */
    }
    .map-section .atalho-map {
        padding: 6px 12px;
        font: 14px/16px Arial, Helvetica, sans-serif;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .map-section .atalho-link-mapa {
        color: #2c3e50;
        text-decoration: none;
        padding: 4px 8px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .map-section .atalho-link-mapa:hover {
        background-color: #3498db;
        color: white;
    }

    .map-section .atalho-link-mapa.active {
        background-color: #2980b9;
        color: white;
        font-weight: bold;
    }
    .map-section .leaflet-tooltip {
        font-size: clamp(.5rem, 2.5vw, .9rem);
        /* font-size: 14px; */
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #ddd;
        border-radius: 3px;
        padding: 6px 10px;
    }
    .map-section .highlighted-region {
        stroke-width: 2px;
        stroke: #333;
        fill-opacity: 0.8;
    }



.about{
    display: flex;
    justify-content: center;
}
.about .container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1200px;
    justify-items: center;
}

.about h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    /* font-size: 2rem; */
    margin-bottom: var(--space-md);
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-features {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.feature-number {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    /* font-size: 1.8rem; */
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: var(--space-xs);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonials {
    background-color: var(--primary);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header .subtitle {
    color: var(--white);
}

.testimonials .section-header h2::after {
    background-color: var(--accent);
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-right: var(--space-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.testimonial-card:last-child {
    margin-right: 0;
}

.testimonial-rating {
    color: var(--warning);
    font-size: clamp(.8rem, 2.5vw, 1.2rem);
    /* font-size: 1.2rem; */
    margin-bottom: var(--space-md);
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: clamp(2.5rem, 2.5vw, 3rem);
    /* font-size: 3rem; */
    color: var(--gray-light);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-right: var(--space-md);
    border: 3px solid var(--gray-light);
}

.author-info strong {
    display: block;
    color: var(--primary);
}

.author-info span {
    font-size: clamp(.5rem, 2.5vw, .9rem);
    /* font-size: 0.9rem; */
    color: var(--gray-dark);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: var(--white);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    /* font-size: 1.5rem; */
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(255,255,255,0.1);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}
.slider-dot.active {
    background-color: var(--white);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--white);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.faq-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: clamp(.8rem, 2.5vw, 1.1rem);
    /* font-size: 1.1rem; */
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: clamp(.8rem, 2.5vw, 1.2rem);
    /* font-size: 1.2rem; */
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    padding: var(--space-md) var(--space-lg);
    max-height: 500px;
}

.faq-cta {
    text-align: center;
}
/* Features Section 2.0 */
    .dashboard-module {
        max-width: 100%;
        /* max-width: 1200px; */
        /* margin: auto; */
    }

    .dashboard-module .dashboard-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .dashboard-module .dashboard-section {
        max-width: 1200px;
        /* background: white; */
        /* border: 1px solid #e2e8f0; */
        border-radius: 8px;
        overflow: hidden;
    }

    .dashboard-module .section-header {
        padding: 1.5rem 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .dashboard-module .section-title {
        margin: 0 0 0.5rem 0;
        font-size: clamp(1.5rem, 2.5vw, 2.5rem);
        /* font-size: 2.50rem; */
        font-weight: 600;
        color: #1a202c;
    }

    .dashboard-module .section-subtitle {
        margin: 0;
        /* color: #6b7280; */
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        /* font-size: 1.2rem; */
    }

    /* Cards Grid */
    .dashboard-module .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1.5rem 1.5rem;
    }

    .dashboard-module .dashboard-card {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: white;
        transition: all 0.2s ease;
        overflow: hidden;
    }

    .dashboard-module .dashboard-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    /* Card Image */
    .dashboard-module .card-image {
        position: relative;
        /* height: 76px; */
        height: clamp(25px, 2.5vw, 76px);
        overflow: hidden;
    }

    .dashboard-module .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .dashboard-module .dashboard-card:hover .card-image img {
        transform: scale(1.05);
    }

    .dashboard-module .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    }

    .dashboard-module .card-action-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.9);
        color: #3182ce;
        text-decoration: none;
        border-radius: 4px;
        font-size: clamp(.5rem, 2.5vw, .8rem);
        /* font-size: 0.8rem; */
        font-weight: 500;
        backdrop-filter: blur(4px);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dashboard-module .card-action-btn:hover {
        background: white;
        color: #2c5aa0;
        transform: translateY(-1px);
    }

    /* Card Content */
    .dashboard-module .card-content {
        padding: 1.25rem;
    }

    .dashboard-module .card-title {
        margin: 0 0 0.75rem 0;
        font-size: clamp(.8rem, 2.5vw, 1.12rem);
        /* font-size: 1.125rem; */
        font-weight: 600;
        color: #1a202c;
    }

    .dashboard-module .card-description {
        margin: 0 0 1.25rem 0;
        color: #6b7280;
        font-size: clamp(.7rem, 2.5vw, .87rem);
        /* font-size: 0.875rem; */
        line-height: 1.4;
    }

    /* Forms */
    .dashboard-module .dashboard-form {
        width: 100%;
    }

    .dashboard-module .dashboard-form .form-group {
        margin-bottom: 1rem;
    }

    .dashboard-module .dashboard-form input {
        width: 100%;
        padding: 0.75rem;
        /* border: 1px solid #d1d5db; */
        border-radius: 6px;
        font-size: clamp(.5rem, 2.5vw, .87rem);
        /* font-size: 0.875rem; */
        transition: all 0.2s ease;
        box-sizing: border-box;
    }

    .dashboard-module .dashboard-form input:focus {
        outline: none;
        border-color: #3182ce;
        box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    }

    .dashboard-module .dashboard-form input::placeholder {
        color: #9ca3af;
    }

    /* Buttons */
    .dashboard-module .btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 6px;
        font-size: clamp(.5rem, 2.5vw, .87rem);
        /* font-size: 0.875rem; */
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        text-decoration: none;
    }

    .dashboard-module .btn-primary {
        background: #3182ce;
        color: white;
    }

    .dashboard-module .btn-primary:hover {
        background: #2c5aa0;
        transform: translateY(-1px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .dashboard-module .cards-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.25rem;
        }
    }

    @media (max-width: 768px) {
        .dashboard-module .dashboard-container {
            gap: 1.5rem;
        }
        
        .dashboard-module .section-header {
            padding: 1.25rem 1.25rem 0;
            text-align: center;
        }
        
        .dashboard-module .cards-grid {
            grid-template-columns: 1fr;
            padding: 0 1.25rem 1.25rem;
            gap: 1rem;
        }
        
        
        .dashboard-module .card-content {
            padding: 1rem;
        }
        
        .dashboard-module .card-action-btn {
            top: 0.75rem;
            right: 0.75rem;
            padding: 0.4rem 0.8rem;
            font-size: clamp(.5rem, 2.5vw, .75rem);
            /* font-size: 0.75rem; */
        }
    }

    @media (max-width: 480px) {
        .dashboard-module .dashboard-section {
            border-radius: 6px;
        }
        
        .dashboard-module .section-header {
            padding: 1rem 1rem 0;
        }
        
        .dashboard-module .cards-grid {
            padding: 0 1rem 1rem;
        }
        
        
        .dashboard-module .dashboard-form input {
            padding: 0.625rem;
        }
        
        .dashboard-module .btn {
            padding: 0.625rem 1.25rem;
            /* font-size: 0.8rem; */
        }
    }

    /* Variante para cards sem imagem */
    .dashboard-module .dashboard-card.no-image .card-content {
        padding-top: 1.5rem;
    }

    .dashboard-module .dashboard-card.no-image .card-action-btn {
        position: static;
        margin-top: 1rem;
        display: inline-flex;
        width: auto;
    }
/* Features Section */

section {
  padding: var(--space-3xl) 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .world-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        margin: 0 10px;
    }
}
/* dasdad ----------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }