/* ==========================================================================
   MakeSolutions - Custom Styles
   Agência de Edição de Vídeo e Imagem
   ========================================================================== */

/* ---------- VARIAVEIS DE COR (altere aqui para mudar o tema todo) ---------- */
:root {
    --ms-primary:       #E07B00;   /* laranja principal */
    --ms-primary-dark:  #c96d00;   /* laranja escuro / hover */
    --ms-primary-light: rgba(224,123,0,0.10); /* fundo suave laranja */

    --ms-dark:          #0f1923;   /* azul quase preto — navbar, headers */
    --ms-dark-2:        #1a2940;   /* azul escuro — featured cards */
    --ms-dark-3:        #2c3e50;   /* azul médio escuro */

    --ms-bg-white:      #ffffff;
    --ms-bg-light:      #f4f6f8;   /* cinza neutro claro — seções alternadas */
    --ms-bg-mid:        #eef0f3;   /* cinza neutro médio */

    --ms-text:          #444444;
    --ms-text-muted:    #888888;
    --ms-text-dark:     #0f1923;
    --ms-border:        #e5e9ee;

    --ms-success:       #27ae60;
    --ms-radius:        6px;
    --ms-shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
    --ms-shadow-md:     0 6px 28px rgba(0,0,0,0.10);
    --ms-shadow-lg:     0 14px 48px rgba(0,0,0,0.13);
}

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

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

/* ---------- NAVBAR — clean light premium ---------- */
.ms-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    border: none;
    border-bottom: 1px solid #e8ecf0;
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    margin-bottom: 0;
}

.ms-navbar.scrolled {
    background: #fff;
    -webkit-box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.ms-navbar .navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a202c !important;
    letter-spacing: 1.5px;
    padding: 15px 15px;
    text-transform: uppercase;
}

.ms-navbar .navbar-brand span { color: var(--ms-primary); }

.ms-navbar .navbar-toggle {
    border-color: #cbd5e0;
    margin-top: 14px;
}

.ms-navbar .navbar-toggle .icon-bar { background: #4a5568; }

.ms-navbar .navbar-toggle:hover,
.ms-navbar .navbar-toggle:focus {
    background: var(--ms-primary-light);
}

/* Links */
.ms-navbar .navbar-nav > li > a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4a5568 !important;
    padding: 18px 13px 14px;
    position: relative;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.ms-navbar .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--ms-primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
}

.ms-navbar .navbar-nav > li > a:hover,
.ms-navbar .navbar-nav > li > a:focus,
.ms-navbar .navbar-nav > li.active > a {
    color: var(--ms-primary) !important;
    background: transparent !important;
}

.ms-navbar .navbar-nav > li > a:hover::after,
.ms-navbar .navbar-nav > li > a:focus::after,
.ms-navbar .navbar-nav > li.active > a::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Icone carrinho */
.ms-navbar .navbar-nav > li.nav-cart > a {
    font-size: 16px;
    padding-left: 8px;
    padding-right: 8px;
    color: #E07B00 !important;
}

/* Dropdown clean */
.ms-navbar .dropdown-menu {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-top: 2px solid var(--ms-primary);
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    min-width: 210px;
    padding: 6px 0;
}

.ms-navbar .dropdown-menu > li > a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #4a5568 !important;
    padding: 10px 18px;
    -webkit-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
}

.ms-navbar .dropdown-menu > li > a:hover {
    background: var(--ms-primary-light) !important;
    color: var(--ms-primary) !important;
}

.ms-navbar .dropdown-menu .divider {
    background: #e8ecf0;
    margin: 4px 0;
}

/* Botao "Acessar Conta" */
.ms-navbar .btn-acesso {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--ms-primary) !important;
    color: #fff !important;
    border-radius: 3px;
    margin: 12px 0 12px 12px;
    padding: 8px 20px !important;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border: none !important;
}

.ms-navbar .btn-acesso:hover {
    background: var(--ms-primary-dark) !important;
    color: #fff !important;
    -webkit-box-shadow: 0 4px 14px rgba(224,123,0,0.35);
    box-shadow: 0 4px 14px rgba(224,123,0,0.35);
}

.ms-navbar .btn-acesso::after { display: none; }

/* ---------- HERO ---------- */
#ms-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 60%, #34495e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

#ms-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(224, 123, 0, 0.08);
    pointer-events: none;
}

#ms-hero h1 {
    font-size: 58px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 0;
}

#ms-hero h1 strong {
    font-weight: 700;
    color: #E07B00;
    display: block;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-block;
    background: rgba(224,123,0,0.2);
    color: #E07B00;
    border: 1px solid rgba(224,123,0,0.4);
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-hero-primary {
    background: #E07B00;
    color: #fff;
    border: 2px solid #E07B00;
    padding: 14px 38px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 3px;
    margin-right: 12px;
    margin-bottom: 10px;
    transition: all 0.25s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background: transparent;
    color: #E07B00;
    text-decoration: none;
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
    padding: 14px 38px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    transition: all 0.25s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background: #fff;
    color: #2c3e50;
    border-color: #fff;
    text-decoration: none;
}

.hero-stats {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item h3 {
    color: #E07B00;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-stat-item p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* ---------- SECTION TITLES ---------- */
.ms-section {
    padding: 80px 0;
}

.ms-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
}

.ms-section-subtitle {
    font-size: 17px;
    color: #888;
    margin-bottom: 0;
    font-weight: 300;
}

.ms-divider {
    width: 50px;
    height: 3px;
    background: #E07B00;
    margin: 20px auto 50px;
    border: none;
    display: block;
}

/* ---------- DIFERENCIAIS ---------- */
#ms-diferenciais {
    background: var(--ms-dark);
    border-top: none;
    border-bottom: none;
    padding: 55px 0;
}

.diferencial-item {
    text-align: center;
    padding: 20px 15px;
}

.diferencial-item i {
    font-size: 38px;
    color: #E07B00;
    margin-bottom: 14px;
    display: block;
}

.diferencial-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.diferencial-item p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- SERVIÇOS ---------- */
#ms-servicos {
    background: #fff;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px 24px 28px;
    margin-bottom: 24px;
    text-align: center;
    -webkit-box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #edf0f5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.service-card:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 16px 48px rgba(0,0,0,0.11);
    box-shadow: 0 16px 48px rgba(0,0,0,0.11);
    border-color: rgba(224,123,0,0.3);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff7f0;
    border: 2px solid rgba(224,123,0,0.18);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 22px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: #E07B00;
    border-color: #E07B00;
}

.service-card i {
    font-size: 34px;
    color: #E07B00;
    -webkit-transition: color 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, transform 0.3s;
}

.service-card:hover i {
    color: #fff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.service-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f1923;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.service-cta {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E07B00;
    text-decoration: none;
    padding: 9px 20px;
    border: 2px solid rgba(224,123,0,0.35);
    border-radius: 4px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    margin-top: auto;
}

.service-cta:hover,
.service-cta:focus {
    background: #E07B00;
    color: #fff;
    border-color: #E07B00;
    text-decoration: none;
    -webkit-box-shadow: 0 6px 18px rgba(224,123,0,0.28);
    box-shadow: 0 6px 18px rgba(224,123,0,0.28);
}

.service-card.featured {
    background: linear-gradient(160deg, #0f1923 0%, #1a2940 100%);
    border-color: #E07B00;
    -webkit-box-shadow: 0 8px 36px rgba(224,123,0,0.22);
    box-shadow: 0 8px 36px rgba(224,123,0,0.22);
}

.service-card.featured .service-icon-wrap {
    background: rgba(224,123,0,0.15);
    border-color: rgba(224,123,0,0.4);
}

.service-card.featured:hover .service-icon-wrap {
    background: #E07B00;
}

.service-card.featured h4 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.65); }

.service-card.featured .service-cta {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.service-card.featured .service-cta:hover {
    background: #E07B00;
    border-color: #E07B00;
}

/* ---------- COMO FUNCIONA ---------- */
#ms-como-funciona {
    background: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#ms-como-funciona .ms-section-title { color: #0f1923; }
#ms-como-funciona .ms-section-subtitle { color: #888; }
#ms-como-funciona .ms-divider { background: #E07B00; }

.step-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #E07B00;
    color: #E07B00;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 22px;
    -webkit-box-shadow: 0 4px 16px rgba(224,123,0,0.18);
    box-shadow: 0 4px 16px rgba(224,123,0,0.18);
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.step-item:hover .step-number {
    background: #E07B00;
    color: #fff;
}

.step-item h4 {
    color: #0f1923;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ---------- PORTFOLIO ---------- */
#ms-portfolio {
    background: #fff;
    padding: 80px 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 3px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.88);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-overlay span {
    color: #E07B00;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-overlay i {
    color: #fff;
    font-size: 28px;
    margin-bottom: 14px;
}

/* ---------- PLANOS ---------- */
#ms-planos {
    background: #f8f9fa;
    padding: 80px 0;
}

.ms-plan-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.ms-plan-card:hover { transform: translateY(-4px); }

.ms-plan-card.featured {
    box-shadow: 0 8px 40px rgba(224,123,0,0.2);
    transform: translateY(-8px);
}

.ms-plan-card.featured:hover { transform: translateY(-12px); }

.plan-header {
    background: #2c3e50;
    padding: 35px 20px;
    text-align: center;
    position: relative;
}

.ms-plan-card.featured .plan-header { background: #E07B00; }

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #f1c40f;
    color: #2c3e50;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 0 0 4px 4px;
}

.plan-name {
    display: block;
    color: rgba(255,255,255,0.8);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.plan-price { color: #fff; font-family: 'Oswald', sans-serif; }
.plan-price sup { font-size: 20px; vertical-align: super; font-weight: 400; }
.plan-price strong { font-size: 64px; font-weight: 700; line-height: 1; }
.plan-price small { font-size: 14px; opacity: 0.7; }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.plan-features li {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.plan-features li i { color: #27ae60; font-size: 14px; -ms-flex-negative: 0; flex-shrink: 0; }
.plan-features li.disabled { color: #ccc; }
.plan-features li.disabled i { color: #ddd; }

.plan-cta {
    display: block;
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    text-decoration: none;
}

.plan-cta:hover { background: #1a252f; color: #fff; text-decoration: none; }
.ms-plan-card.featured .plan-cta { background: #E07B00; }
.ms-plan-card.featured .plan-cta:hover { background: #B86200; }

/* ---------- DEPOIMENTOS ---------- */
#ms-depoimentos {
    background: var(--ms-dark);
    padding: 80px 0;
}

#ms-depoimentos .ms-section-title { color: #fff; }
#ms-depoimentos .ms-section-subtitle { color: rgba(255,255,255,0.55); }

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--ms-primary);
    border-radius: 4px;
    padding: 30px 28px;
    margin-bottom: 24px;
    -webkit-transition: background 0.25s;
    transition: background 0.25s;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
}

.testimonial-card p {
    color: rgba(255,255,255,0.82);
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E07B00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.testimonial-author-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.testimonial-author-role {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 1px;
}

/* ---------- CTA FAIXA ---------- */
#ms-cta {
    background: #E07B00;
    padding: 60px 0;
    text-align: center;
}

#ms-cta h2 { color: #fff; font-size: 34px; font-weight: 700; margin-bottom: 12px; }
#ms-cta p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 30px; }

.btn-cta-white {
    background: #fff;
    color: #E07B00;
    border: 2px solid #fff;
    padding: 14px 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px;
    display: inline-block;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-cta-white:hover { background: transparent; color: #fff; text-decoration: none; }

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px;
    display: inline-block;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-cta-outline:hover { background: #fff; color: #E07B00; border-color: #fff; text-decoration: none; }

/* ---------- CONTATO ---------- */
#ms-contato { background: #fff; padding: 80px 0; }

.contact-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item i {
    font-size: 22px;
    color: #E07B00;
    margin-top: 3px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-info-item h5 {
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.contact-info-item p { color: #888; margin: 0; font-size: 15px; }

.ms-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 15px;
    color: #444;
    height: auto;
    margin-bottom: 16px;
    transition: border-color 0.2s;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ms-form .form-control:focus {
    border-color: #E07B00;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ms-form textarea.form-control { resize: vertical; min-height: 130px; }

.btn-submit {
    background: #E07B00;
    color: #fff;
    border: none;
    padding: 14px 44px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.2s;
    width: 100%;
    cursor: pointer;
}

.btn-submit:hover { background: #B86200; color: #fff; }

/* ---------- FOOTER ---------- */
#ms-footer { background: #1a252f; padding: 60px 0 40px; }

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 14px;
}

.footer-brand span { color: #E07B00; }
#ms-footer p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
#ms-footer h5 { color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: #E07B00; }

.footer-social { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 12px; margin-top: 10px; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover { background: #E07B00; color: #fff; }

/* ---------- COPYRIGHT ---------- */
#ms-copyright { background: #111; padding: 16px 0; text-align: center; }
#ms-copyright p { color: rgba(255,255,255,0.35); font-size: 13px; margin: 0; }
#ms-copyright a { color: #E07B00; }

/* ---------- BACK TO TOP ---------- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: #E07B00;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(224,123,0,0.4);
}

#back-to-top.show { opacity: 1; }
#back-to-top:hover { background: #B86200; color: #fff; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.whatsapp-float:hover { -webkit-transform: scale(1.1); transform: scale(1.1); color: #fff; }

/* ============================================================
   PLANOS.ASPX — estilos específicos da página de planos
   ============================================================ */
.ms-planos-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    padding: 100px 0 60px;
    margin-top: 64px;
}

.ms-planos-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin: 16px 0 12px;
}

.ms-planos-hero-title strong { font-weight: 700; color: #E07B00; }

.ms-planos-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.ms-planos-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ms-plan-card-wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px 28px;
    width: 25%;
}

.ms-plan-card-wrap.destaque {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.faq-q {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px;
}

.faq-a {
    font-size: 14px;
    color: #718096;
    line-height: 1.65;
    margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    #ms-hero h1 { font-size: 44px; }
    .ms-plan-card-wrap { width: 50%; }
    .ms-planos-hero-title { font-size: 36px; }
}

@media (max-width: 768px) {
    #ms-hero { min-height: auto; padding: 110px 0 60px; }
    #ms-hero h1 { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .btn-hero-primary, .btn-hero-secondary { display: block; width: 100%; margin: 6px 0; text-align: center; }
    .ms-section { padding: 55px 0; }
    .ms-section-title { font-size: 28px; }
    .ms-plan-card.featured { -webkit-transform: none; transform: none; }
    .ms-navbar { background: #fff; }
    .ms-navbar .navbar-collapse { border-top: 1px solid #e8ecf0; background: #fff; }
    .ms-navbar .navbar-nav > li > a { padding: 13px 16px; border-bottom: 1px solid #f0f0f0; }
    .ms-navbar .navbar-nav > li > a::after { display: none; }
    .ms-navbar .navbar-nav .dropdown-menu { -webkit-box-shadow: none; box-shadow: none; border: none; border-top: 2px solid var(--ms-primary); padding: 0; background: #f8f9fa; }
    .ms-navbar .btn-acesso { margin: 12px 16px; display: block; text-align: center; }
    #ms-cta h2 { font-size: 26px; }
    .btn-cta-white, .btn-cta-outline { display: block; width: 100%; margin: 6px 0; text-align: center; }
    .ms-plan-card-wrap { width: 100%; }
    .ms-plan-card-wrap.destaque { -webkit-transform: none; transform: none; }
    .ms-planos-hero-title { font-size: 28px; }
}
