/* ============================================
   DROP VIAGENS - ESTILOS
   ============================================ */

:root {
    --black: #000000;
    --yellow: #fcbb03;
    --white: #FFFFFF;
    --gray-light: #e8e8e8;
    --gray-medium: #cccccc;
    --gray-dark: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--yellow);
    padding: 4px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled .header-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
}

.logo {
    max-height: 110px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled .logo {
    max-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo-text {
    font-weight: 600;
    font-size: 11px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    transform: translateY(0);
}

.header.scrolled .logo-text {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Header Services */
.header-services {
    display: none;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.header.scrolled .header-services {
    display: flex;
}

.header-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
    margin-left: auto;
}

.header.scrolled .header-menu-toggle {
    display: none;
}

.header-menu-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--yellow);
    padding: 12px;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-menu-mobile.active {
    display: flex;
}

.header-service-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
    border-radius: 8px;
    text-decoration: none;
}

.header-service-btn:hover {
    opacity: 1;
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.header-service-icon {
    width: 16px !important;
    height: 16px !important;
}

.header-service-text {
    font-size: 13px;
    white-space: nowrap;
}

.mobile-service-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
}

.mobile-service-btn:hover {
    background-color: rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.mobile-service-btn img {
    width: 18px;
    height: 18px;
}
.hero {
    text-align: center;
    padding: 16px 16px 12px 16px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    text-align: center;
}

/* MAIN CONTENT */
.main-content {
    margin: 12px auto 40px auto;
}

/* TABS */
.tabs-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tab-btn {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--gray-light);
    background-color: transparent;
    color: var(--black);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tab-icon {
    width: 25px !important;
    height: 25px !important;
    object-fit: contain;
    display: inline-block;
    margin-right: 4px;
}

.tab-btn:hover {
    border-color: var(--yellow);
    background-color: rgba(246, 183, 14, 0.08);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(246, 183, 14, 0.25);
}

/* INSTITUTIONAL CONTENT */
.institutional-content {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    line-height: 1.8;
}

.institutional-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 8px;
}

.institutional-content p {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 16px;
    text-align: justify;
}

.institutional-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.institutional-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: var(--gray-dark);
}

.institutional-content ul li:last-child {
    border-bottom: none;
}

.institutional-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.institutional-content ol li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.institutional-content strong {
    color: var(--black);
    font-weight: 700;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORMS */
.form {
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group label {
    font-weight: 600;
    font-size: 12px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 12px;
    font-size: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(246, 183, 14, 0.1);
    background-color: rgba(246, 183, 14, 0.01);
}

.form-group input::placeholder {
    color: var(--gray-medium);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* FIELDSETS */
.fieldset {
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(246, 183, 14, 0.02);
    transition: all 0.3s ease;
}

.fieldset:hover {
    border-color: var(--yellow);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.fieldset legend {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    padding: 0 6px;
    margin: 0 -6px;
}

/* BUTTONS */
.btn-submit {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-submit:hover {
    background-color: #f5a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(246, 183, 14, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* FOOTER */
.footer {
    background-color: #000000;
    color: var(--white);
    padding: 40px 16px;
    margin-top: 60px;
    width: 100%;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(247, 243, 246, 0.85);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(247, 243, 246, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--yellow);
    transform: translateX(4px);
    text-decoration: none;
}

.footer-link-btn {
    color: rgba(247, 243, 246, 0.85);
    background: none;
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-family: inherit;
    text-align: left;
}

.footer-link-btn:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.whatsapp-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--yellow);
    transform: translateX(2px);
}

.instagram-logo {
    width: 18px;
    height: 18px;
    display: inline-block;
    fill: currentColor;
    object-fit: contain;
}

.whatsapp-logo,
.sale-logo {
    width: 18px;
    height: 18px;
    display: inline-block;
    object-fit: contain;
}

.footer-logo {
    max-height: 170px;
    width: auto;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 243, 246, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(247, 243, 246, 0.6);
    max-width: 1000px;
    margin: 0 auto;
}

/* PACOTES EM DESTAQUE */
.packages-section {
    margin: 40px 0;
    padding: 0 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 4px;
    text-align: center;
}

.packages-carousel {
    position: relative;
    width: 100%;
}

.packages-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    
    /* Ocultar scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-container::-webkit-scrollbar {
    display: none;
}

.package-card {
    min-width: 250px;
    max-width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 300px;
    flex-shrink: 0;
}

/* Botões de controle */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-light);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--white);
    border-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Efeito de fade nas bordas */
.packages-container::before,
.packages-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 5;
    pointer-events: none;
}

.packages-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.packages-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.package-card {
    min-width: 250px;
    max-width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 340px; /* Altura maior para imagem maior */
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-header {
    margin-bottom: 8px;
}

.package-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.package-destination {
    font-size: 12px;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-info {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.package-duration,
.package-category,
.package-people {
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
    background: rgba(246, 183, 14, 0.1);
    padding: 3px 6px;
    border-radius: 10px;
    border: 1px solid rgba(246, 183, 14, 0.2);
}

/* Estilos para preço do pacote */
.package-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: center;
}

.price-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--yellow);
}

.package-image {
    width: 100%;
    height: 220px; /* Imagem maior na vertical */
    overflow: hidden;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    margin-bottom: 8px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-actions {
    display: flex;
    justify-content: center;
}

.btn-select {
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(246, 183, 14, 0.3);
}

.btn-select:hover {
    background-color: #f5a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(246, 183, 14, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-light);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--white);
    border-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Página Sobre - Seções Institucionais */
.institutional-section {
    margin: 40px 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(252, 187, 3, 0.1);
    position: relative;
}

.section-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-text h2 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.content-text p {
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.content-text p:hover {
    color: var(--black);
    transform: translateX(2px);
}

.content-text ul {
    color: var(--black);
    line-height: 1.6;
    margin-left: 0;
    padding-left: 0;
}

.content-text li {
    margin-bottom: 10px;
    padding-left: 0;
    transition: all 0.3s ease;
}

.content-text li:hover {
    transform: translateX(5px);
    color: var(--black);
}

.content-text strong {
    color: var(--black);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.content-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), transparent);
    opacity: 0.5;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-text strong:hover::after {
    transform: scaleX(1);
}

.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(252, 187, 3, 0.2);
}

.content-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(252, 187, 3, 0.2);
    border-color: var(--yellow);
}

/* Animações de entrada */
.institutional-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.institutional-section:nth-child(1) { animation-delay: 0.1s; }
.institutional-section:nth-child(2) { animation-delay: 0.2s; }
.institutional-section:nth-child(3) { animation-delay: 0.3s; }
.institutional-section:nth-child(4) { animation-delay: 0.4s; }
.institutional-section:nth-child(5) { animation-delay: 0.5s; }
.institutional-section:nth-child(6) { animation-delay: 0.6s; }
.institutional-section:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeitos hover nas seções */
.institutional-section:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .header-services {
        display: none !important;
    }

    .header-menu-toggle {
        display: none;
    }

    .header.scrolled .header-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 24px;
    }

    .packages-section {
        margin: 30px 0;
        padding: 0 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .packages-container {
        gap: 16px;
    }

    .package-card {
        min-width: 260px;
        max-width: 280px;
    }

    .package-image {
        height: 160px;
    }

    .package-content {
        padding: 16px;
    }

    .package-name {
        font-size: 16px;
    }

    .carousel-btn {
        display: block;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .tabs-buttons {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
        padding: 8px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 12px;
        gap: 8px;
    }

    .fieldset {
        padding: 10px;
        gap: 8px;
    }

    .form-group {
        gap: 2px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group select {
        padding: 6px 10px;
        font-size: 14px;
    }

    .fieldset legend {
        font-size: 11px;
        padding: 0 4px;
        margin: 0 -4px;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Botões de categoria no celular - 2x2 */
    .button-group[data-target="categoriaPacote"] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .button-group[data-target="categoriaPacote"] .btn-option {
        padding: 12px 8px;
        font-size: 12px;
        height: auto;
        min-height: 40px;
        width: 100%;
    }

    /* Responsividade para a página Sobre */
    .section-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 8px 12px 6px 12px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
        align-items: center;
    }

    .tabs-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 6px;
    }

    .tab-btn {
        padding: 8px 10px;
        font-size: 10px;
    }

    .form {
        padding: 10px;
        gap: 6px;
    }

    .form-group {
        gap: 2px;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group input,
    .form-group select {
        font-size: 13px;
        padding: 5px 8px;
    }

    .form-row {
        gap: 8px;
    }

    .fieldset {
        padding: 8px;
        gap: 6px;
    }

    .fieldset legend {
        font-size: 10px;
        padding: 0 3px;
        margin: 0 -3px;
    }

    .btn-submit {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }
}

/* ACESSIBILIDADE */
.tab-btn:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.btn-submit:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
