/* ============================================
   RIO NO TEATRO - REDESIGN PECA.PHP
   Design Moderno e Responsivo
   ============================================ */

/* === RESET E BASE === */
* {
    box-sizing: border-box;
}

:root {
    --primary-blue: #286090;
    --primary-yellow: #e4ff00;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 16px;
    background: var(--white) !important;
}

/* === HEADER MODERNO === */
.rnt-header {
    background: var(--primary-blue) !important;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.rnt-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.rnt-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.rnt-logo-wrapper img {
    height: 50px;
    width: auto;
}

.rnt-nav {
    color: var(--white);
    display: none;
    gap: 32px;
}

.rnt-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.rnt-nav a:hover {
    color: var(--gray-light);
}

.rnt-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.rnt-nav a:hover::after {
    width: 100%;
}

.rnt-user-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Hambúrguer sempre à direita em mobile */
.rnt-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    transition: var(--transition);
    position: relative;
}

.rnt-hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff !important;
    transition: var(--transition);
    border-radius: 2px;
}

/* Animação do X quando menu aberto - com cor branca */
.rnt-hamburger.active span {
    background: var(--white);
}

.rnt-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.rnt-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.rnt-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menu Mobile com Overlay Escuro */
.rnt-mobile-menu {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 29, 88, 0.98) !important;
    z-index: 9999 !important;
    padding: 100px 24px 24px !important;
    overflow-y: auto !important;
}

.rnt-mobile-menu.active {
    display: block !important;
    animation: fadeIn 0.3s ease !important;
}

.rnt-mobile-menu a {
    display: block !important;
    padding: 20px 0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(228, 255, 0, 0.2) !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.rnt-mobile-menu a:hover {
    color: #e4ff00 !important;
    padding-left: 10px !important;
}

.rnt-mobile-menu a:last-child {
    border-bottom: none !important;
}

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

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

/* === HERO SECTION === */
.rnt-hero {
    background: var(--gray-light);
    padding: 32px 0;
}

.rnt-hero-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 32px;
}

.rnt-discount-badge {
    
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
}

.rnt-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue) !important;
    margin: 24px 0 16px;
    line-height: 1.2;
    text-align: center !important;
}

/* === GALERIA MODERNA === */
.rnt-gallery {
    position: relative;
}

.rnt-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    cursor: pointer;
    transition: var(--transition);
}

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

.rnt-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    padding: 16px;
    background: var(--gray-light);
}

.rnt-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.rnt-thumb:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.rnt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rnt-thumb.video::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 24px;
    background: rgba(0,0,0,0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === INFO CARDS === */
.rnt-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 24px;
}

.rnt-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.rnt-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.rnt-info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.rnt-info-content {
    flex: 1;
}

.rnt-info-label {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.rnt-info-value {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* === SELEÇÃO DE DATAS === */
.rnt-dates-section {
    background: var(--white);
    padding: 32px 0;
}

.rnt-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
    padding: 16px 24px;
    background: var(--primary-yellow);
    border-radius: var(--radius);
    display: inline-block;
}

.rnt-dates-carousel {
    padding: 0 24px 24px;
}

.rnt-date-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rnt-date-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.rnt-date-card.active {
    border-color: var(--primary-yellow);
    border-width: 3px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #fff9b3 100%);
    box-shadow: var(--shadow-md);
}

.rnt-date-day {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.rnt-date-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Oswald', sans-serif;
}

.rnt-date-time {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-top: 8px;
}

/* === COMPRA === */
.rnt-purchase-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin: 24px 0;
}

.rnt-steps {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: space-around;
}

.rnt-step {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--gray-light);
    border-radius: var(--radius);
    opacity: 0.5;
    transition: var(--transition);
}

.rnt-step.active {
    opacity: 1;
    background: var(--primary-yellow);
}

.rnt-step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
}

.rnt-step-label {
    font-size: 14px;
    font-weight: 600;
}

.rnt-price-display {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.rnt-price-old {
    text-decoration: line-through;
    color: var(--gray-medium);
    font-size: 18px;
}

.rnt-price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Oswald', sans-serif;
}

.rnt-qty-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
}

.rnt-qty-input {
    width: 80px;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.rnt-btn-buy {
    width: 100%;
    padding: 18px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.rnt-btn-buy:hover {
    background: #152d6e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === BOTTOM BAR MOBILE === */
.rnt-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 12px 16px;
    z-index: 999;
}

.rnt-bottom-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.rnt-bottom-price {
    flex: 1;
}

.rnt-bottom-price-label {
    font-size: 12px;
    color: var(--gray-medium);
}

.rnt-bottom-price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Oswald', sans-serif;
}

.rnt-bottom-bar .rnt-btn-buy {
    flex: 1;
    max-width: 200px;
    padding: 14px;
}

/* === ACCORDION === */
.rnt-accordion {
    margin: 24px 0;
}

.rnt-accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.rnt-accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.rnt-accordion-header:hover {
    background: var(--gray-light);
}

.rnt-accordion-icon {
    transition: var(--transition);
}

.rnt-accordion-item.active .rnt-accordion-icon {
    transform: rotate(180deg);
}

.rnt-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rnt-accordion-item.active .rnt-accordion-content {
    max-height: 2000px;
}

.rnt-accordion-body {
    padding: 0 20px 20px;
    line-height: 1.8;
}

/* === OFERTAS RELACIONADAS === */
.rnt-related {
    padding: 48px 0;
    background: var(--gray-light);
}

.rnt-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.rnt-offer-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.rnt-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.rnt-offer-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.rnt-offer-content {
    padding: 16px;
}

.rnt-offer-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.rnt-offer-info {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 12px;
}

.rnt-offer-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    transition: var(--transition);
}

.rnt-offer-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* === RESPONSIVIDADE === */
@media (min-width: 768px) {
    .rnt-nav {
        display: flex;
    }

    .rnt-hamburger {
        display: none;
    }

    .rnt-hero-title {
        font-size: 42px;
    }

    .rnt-main-image {
        height: 500px;
    }

    .rnt-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 767px) {
    .rnt-bottom-bar {
        display: block;
    }

    .rnt-purchase-section {
        margin-bottom: 80px;
    }

    .rnt-steps {
        flex-direction: column;
    }

    .rnt-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .rnt-hero-title {
        font-size: 48px;
    }

    .rnt-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === ANIMAÇÕES === */
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === UTILITÁRIOS === */
.rnt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rnt-text-center {
    text-align: center;
}

.rnt-mt-1 { margin-top: 8px; }
.rnt-mt-2 { margin-top: 16px; }
.rnt-mt-3 { margin-top: 24px; }
.rnt-mt-4 { margin-top: 32px; }

.rnt-mb-1 { margin-bottom: 8px; }
.rnt-mb-2 { margin-bottom: 16px; }
.rnt-mb-3 { margin-bottom: 24px; }
.rnt-mb-4 { margin-bottom: 32px; }

/* === ESTILOS LEGADOS (do style.min.css) === */
/* Mantidos para compatibilidade com seções antigas da página */

/* Utilitários */
.mtop30 {
    margin-top: 30px;
}

.hidden {
    display: none !important;
}

.justify {
    text-align: justify;
}

.striked {
    text-decoration: line-through;
}

.text-danger {
    color: #d9534f;
}

.text-muted {
    color: var(--gray-medium);
}

/* Títulos de Seção */
div.titulo {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #fc0;
    background: #19354D;
    border-radius: 5px;
    padding: 8px 8px 8px 8px;
    margin: 15px 0;
    width: 100%;
    float: left;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:hover {
    background-color: #449d44;
    border-color: #398439;
}

.button {
    background-color: #bdd748;
    border: 0;
    height: 50px;
    cursor: pointer;
    border-radius: 10px;
}

.single_add_to_cart_button {
    font-size: initial;
}

/* Bloco de Preços */
.price-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.4em;
    width: 100%;
    max-width: 450px;
}

.price-block .opt {
    width: 265px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-block input,
.price-block select {
    background-color: #bdd748;
    border: 1px solid #bbb;
    padding: 5px;
    margin: 5px;
    width: 55px;
}

.opt-title {
    font-weight: 600;
}

.opt-price,
.opt-price-old,
.opt-price-soc {
    font-weight: 700;
}

.btn_comprar {
    width: 100%;
    display: block;
    text-align: center;
}

.btn_comprar button.button {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    border: 0;
    height: 60px;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn_comprar button.button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
    .btn_comprar button.button {
        width: 100%;
        height: 70px;
        font-size: 24px;
        border-radius: 12px;
    }
}

/* Mapa de Teatro/Assentos */
.teatro {
    width: 1150px !important;
    overflow-x: initial;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.teatro .lugares .fileiras {
    width: 100%;
    display: inline-flex;
    margin-bottom: 5px;
    margin-left: 0px;
}

.teatro .lugares .fileiras .assentos {
    float: left;
    background: #0A1D58;
    cursor: pointer;
    border-radius: 100% 100% 0 0;
    font-size: 8px;
    color: #FFF;
    margin-left: 4px;
    display: block;
    padding: 0px;
    width: 20px;
    height: 22px;
    text-align: center;
    vertical-align: middle;
    padding-top: 8px;
}

.teatro .lugares .fileiras .assentos:hover {
    opacity: 0.8;
}

.teatro .assentos.cadeirante {
    background: #00a6b2 !important;
}

.teatro .assentos.ocupado {
    background: #bcbbb0 !important;
    cursor: none !important;
    pointer-events: none !important;
}

.teatro .assentos.indisponivel {
    background: #bcbbb0 !important;
    cursor: none !important;
    pointer-events: none !important;
}

.teatro .assentos.lugar-vazio {
    background: #FFF !important;
    cursor: none;
    pointer-events: none;
}

.teatro .assentos.selecionado {
    background: #ffd653 !important;
}

.legenda label {
    font-size: 12px;
    color: #ccc;
}

.legenda ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

.legenda ul li {
    float: left;
    margin-right: 15px;
}

.legenda ul li .leg-assentos {
    float: left;
    background: #0A1D58;
    cursor: pointer;
    border-radius: 100%;
    font-size: 10px;
    color: #FFF;
    margin-left: 10px;
    margin-top: 2px;
    margin-right: 5px;
    display: block;
    padding: 5px;
    width: 15px;
    height: 15px;
    text-align: center;
    vertical-align: middle;
    padding-top: 8px;
}

.legenda ul li .leg-assentos.ocupado {
    background: #bcbbb0;
}

.legenda ul li .leg-assentos.selecionado {
    background: #ffd653 !important;
}

.legenda ul li .leg-assentos.cadeirante {
    background: #00a6b2;
}

/* Ofertas Container */
.offer-container {
    position: fixed;
    background: #fff;
    top: -500px;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 20;
    transition: .6s;
}

.offer-container.fixed {
    top: 0;
}

.offer {
    float: left;
    width: 100%;
}

.offer-item {
    font-size: 0.7em;
    width: 100%;
}

.offer-item .offer-img a {
    display: block;
    width: 100%;
    height: 5vw;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.offer-item h3 {
    height: 2em;
    font-size: 1em;
    font-weight: 700;
    margin: 5px 0;
    text-transform: uppercase;
}

.offer-item h3 a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.offer-item .btn {
    width: 100%;
    padding: 0;
    border-radius: 0;
}

/* Responsividade para Ofertas */
@media screen and (max-width: 1400px) {
    .offer-item .offer-img a {
        height: 8vw;
    }
}

@media screen and (max-width: 996px) {
    .offer-item .offer-img a {
        height: 11vw;
    }
}

@media screen and (max-width: 480px) {
    .offer-item .offer-img a {
        height: 18vw;
    }
}

/* === ALERTS DO BOOTSTRAP === */
/* Alerts ocultos por padrão - serão exibidos via JavaScript quando necessário */
.alert {
    display: none !important;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    position: relative;
}

.alert.show {
    display: block !important;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    color: inherit;
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    cursor: pointer;
}

.alert .close:hover {
    opacity: 1;
}

/* === FORMULÁRIOS === */
.back_white {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-horizontal .form-group {
    margin-bottom: 20px;
}

.form-horizontal .control-label {
    text-align: right;
    padding-top: 7px;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-control {
    display: block;
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
    border-color: var(--primary-yellow);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(228, 255, 0, 0.2);
}

select.form-control {
    appearance: auto;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #1e4a6e;
    border-color: #1e4a6e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsividade para Formulários */
@media (max-width: 767px) {
    .form-horizontal .control-label {
        text-align: left;
        margin-bottom: 5px;
    }

    .back_white {
        padding: 15px;
    }
}
