
:root {
   
    --mt-blue-roi: #0046af;       
    --mt-blue-dark: #00366b;     
    --mt-orange: #ff7b00;         
    --mt-orange-light: #ff7b00;   
    
    --mt-text-dark: #2d3436;     
    --mt-text-gray: #2d3436;      
    --mt-bg-light: #f4f7f9;       
    --mt-white: #ffffff;
    
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#milticket-page {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    line-height: 1.6;
}



.hero-mt {
    position: relative;
    color: var(--mt-white);
    text-align: center;
    padding: 120px 20px 140px;  
    background-color: #182197;

    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/Affiche milticket.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);

    min-height: 100vh;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@media (max-width: 768px) {
    .hero-mt {
        padding: 80px 16px 100px;
        min-height: 50vh;
        
    }
}


@media (max-width: 480px) {
    .hero-mt {
        padding: 60px 12px 80px;
        min-height: 40vh;
        background-position: center top; 
    }
}

.milticket-title {
    font-weight: 500;
    letter-spacing: -1px; 
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    margin: 0;
    line-height: 1.2;
    text-align: center;
    font-size: 70px;
}

.text-blue {
    color: #004aad; 
}


.text-orange {
    color: #f35912; 
}
.sub-title-white {
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
    font-weight: 300;
}

.text-reveal-step {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #2d3436;;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    animation: revealEffect 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.text-reveal-step:nth-child(1) { animation-delay: 0.3s; }
.text-reveal-step:nth-child(2) { animation-delay: 1.5s; }
.text-reveal-step:nth-child(3) { animation-delay: 2.7s; }

@keyframes revealEffect {
    0% {
        opacity: 0;
        transform: translateX(50px);
        clip-path: inset(0 100% 0 0); 
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0 0 0); 
    }
}


.btn-modern {
    padding: 14px 28px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: white !important;
    border: none;
    display: inline-block;
    background-size: 200% auto; 
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 0px;
     text-align: center;
    text-transform: uppercase; 
    letter-spacing: 2px;
    
}



.btn-modern {
   
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.icon-pro {
    margin-right: 12px;
    font-size: 1.1rem;
    opacity: 0.9; 
}

.icon-pro-arrow {
    margin-right: 10px;
    font-size: 1 rem;
    transition: transform 0.3s ease; 
}



.btn-modern.grad-blue:hover .icon-pro-arrow {
    transform: translateX(4px);
}

.btn-modern:hover .icon-pro {
    opacity: 1;
    filter: brightness(1.2);
}

.reveal-btns-container {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 3.8s; 
}

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

.btn-modern:hover {
    transform: translateY(-5px) scale(1.05); 
    background-position: right center; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.title-roi-pro {
    color: #004aad; 
     text-align: center;
    margin-bottom: 50px;
    font-size: 700;
    text-transform: uppercase; 
    letter-spacing: 2px;
}

.title-line-pro {
    width: 60px;
    height: 4px;
    background: #f39c12; 
    border-radius: 10px;
    margin-top: 15px;
}

.text-description-pro {
    color: #2d3436;
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 900px;
    margin-bottom: 50px;
}


.card-modern-pro {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #f1f2f6; 
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.card-modern-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #004aad, #f39c12); 
    transition: width 0.4s ease;
}


.card-modern-pro:hover {
    transform: translateY(-8px);
    border-color: #ced4da;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-modern-pro:hover::after {
    width: 100%;
}
.grad-orange { background-image: linear-gradient(135deg, #ff6600, #ff6600); }
.grad-blue   { background-image: linear-gradient(135deg, #ff6600, #ff6600); }
.grad-indigo { background-image: linear-gradient(135deg, #ff6600, #ff6600); }

.card-title-pro {
    font-weight: 700;
    color: #182197;
    margin-bottom: 12px;
    font-size: 1 rem;
}

.card-text-pro {
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
    color: #2d3436;;
}




.section-title-modern {
    color: #004aad; 
     text-align: center;
    margin-bottom: 50px;
    font-size: 700;
    text-transform: uppercase; 
    letter-spacing: 2px;
}


.badge-milticket {
    background: rgba(255, 102, 0, 0.1);
    color: var(--mt-orange);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
   
}

.security-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.icon-wrap {
    width: 45px;
    height: 45px;
    background: var(--mt-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.target-card-full {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.target-card-full:hover {
    border-bottom-color: var(--mt-orange);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.target-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    color: var(--mt-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.target-card-full:hover .target-icon {
    background: var(--mt-orange);
    color: white;
}

.target-card-full h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}


.cta-modern {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.cta-title {
    color: #004aad; 
     text-align: center;
    margin-bottom: 50px;
    font-size: 700;
    text-transform: uppercase; 
    letter-spacing: 2px;
}


.brand-blue {
    color: var(--mt-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-text {
    color: #2d3436;
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-primary-mt {
    background: var(--mt-orange);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-mt:hover {
    background: #e63600;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.2);
     color:#ffffff ;
}

.btn-secondary-mt {
    background: rgb(5, 73, 199);
    color: var(--mt-white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--mt-blue);
    transition: 0.3s;
}

.btn-secondary-mt:hover {
    background: var(--mt-blue);
    color:#182cdf ;
}

.cta-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    color: #818b96;
    flex-wrap: wrap;
}

.footer-item i {
    color: #2ed573; 
    margin-right: 6px;
}

.dot {
    width: 5px;
    height: 5px;
    background: #ced6e0;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cta-footer { flex-direction: column; gap: 10px; }
    .dot { display: none; }
}


.description-mt {
    background: #ffffff; 
    padding-top: 60px;
    padding-bottom: 60px;
}

.lead-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #182197; 
    font-weight: 400;
}


.btn-mt-outline {
    border: 2px solid var(--mt-orange);
    color: var(--mt-orange);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-mt-orange {
    background: var(--mt-orange);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}


.btn-mt-orange {
    background-color: var(--mt-orange);
    color: white !important;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-mt-orange:hover { 
    background-color: var(--mt-orange-light); 
    transform: translateY(-3px); 
}

.btn-mt-outline {
    border: 2px solid white;
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-mt-outline:hover { 
    background: white; 
    color: var(--mt-blue) !important; 
}

.mt-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}

.mt-card:hover { 
    transform: translateY(-10px); 
    border-bottom-color: var(--mt-orange); 
}

.mt-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--mt-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.section-title {
    color: var(--mt-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.accent-orange { 
    color: var(--mt-orange); 
    font-weight: 600; 
}

.cta-final {
    background: var(--mt-light-bg);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid #e1e8ed;
}

.bg-light { 
    background-color: var(--mt-light-bg) !important; 
}


.features-section {
    background-color: #ffffff;
}

.feature-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f2f6; 
    border-top-width: 4px; 
    position: relative;
    display: flex;
    flex-direction: column;
}

.border-orange { border-top-color: var(--mt-orange) !important; }
.border-blue { border-top-color: var(--mt-blue) !important; }

.feature-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: var(--mt-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.feature-box h6 {
    font-weight: 700;
    color: var(--mt-blue-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.feature-box p.small {
    color: var(--mt-text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    background: #fff;
}

.feature-box:hover .feature-icon {
    background: var(--mt-blue-dark);
    color: #ffffff;
    transform: rotateY(180deg); 
}

@media (max-width: 768px) {
    .feature-box {
        text-align: center;
        align-items: center;
        padding: 25px 15px;
    }
}







@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');




.milhome {
    font-family: 'Poppins', sans-serif;
    color: var(--mt-text-dark);
    line-height: 1.7;
    background-color: var(--mt-white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.animate { opacity: 0; }

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

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

.fadeInUp { animation: fadeInUp 0.8s forwards ease-out; }
.fadeIn { animation: fadeIn 1s forwards ease-in; }

.delay-1s { animation-delay: 0.2s; }
.delay-2s { animation-delay: 0.5s; } 
.delay-3s { animation-delay: 0.8s; }
.delay-4s { animation-delay: 1.1s; }
.delay-5s { animation-delay: 1.4s; }



.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff url("../img/Logos milhome.png") right center/contain no-repeat;
    border: none;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 50%;
    background: #ffffff;
    z-index: 1;
}

.hero-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
    padding: 40px 0;
}


.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.brand-mil { color: #1e40af; }
.brand-home { color: #ea580c; }

.subtitle {
    font-size: 1rem;
    color: #2d3436;
    line-height: 1.7;
    margin: 10px 0 40px;
}

.small-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3436;
    margin-top: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        text-align: center;
        background-size: 80%;
        background-position: center top;
        padding-top: 200px;
    }
    
    .hero::before {
        width: 100%;
        height: 55%;
        background: rgba(240, 244, 248, 0.98);
    }
    
    .hero-wrapper {
        padding: 0 24px;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 0;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
        justify-content: center;
    }
}
.buttons {
    display: flex;         
    flex-wrap: nowrap;      
    gap: 15px;              
    justify-content: flex-start; 
    align-items: center;   
    margin-top: 60px; 
    border-radius: 20 px;      
}


.btn {
    white-space: nowrap;    
    flex-shrink: 0;        
}


@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;           
    }
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


.btn.primary {
    background-color: var(--mt-orange);
    color: var(--mt-white);
    border: none;
}
.btn.primary:hover {
    background-color: var(--mt-orange-light);
}


.btn.secondary {
    background-color: var(--mt-blue-roi);
    color: var(--mt-white);
    border: none;
}
.btn.secondary:hover {
    background-color: #0056e0; 
}


.btn.outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--mt-white);
    background-color: transparent;
}
.btn.outline:hover {
    background-color: var(--mt-white);
    color: var(--mt-blue-dark);
    border-color: var(--mt-white);
}


.section .btn.outline {
    border: 2px solid var(--mt-blue-roi);
    color: var(--mt-blue-roi);
}
.section .btn.outline:hover {
    background-color: var(--mt-blue-roi);
    color: var(--mt-white);
}


.section {
    padding: 90px 0;
    background-color: var(--mt-white);
}

.section.alt {
    background-color: var(--mt-bg-light); 
}


.section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mt-blue-dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    position: relative;
}


.section h2::before {
    content: 'MILHOME';
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--mt-orange);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}


.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--mt-orange);
    border-radius: 2px;
    margin-top: 15px;
}

.section h3 {
    font-size: 1.5rem;
    color: var(--mt-blue-roi);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}


.section p {
    color: var(--mt-text-gray);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 800px; 
}




.kosi-features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-bottom: 0%;
}

.kosi-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kosi-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 22px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid #00529b;
  transition: all 0.25s ease;
}

.kosi-features li:hover {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 82, 155, 0.08);
  transform: translateX(5px);
}

.kosi-features li i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #00529b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  margin-top: 0px;
}

.kosi-features li span {
  color: #2d3436;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}


.kosi-features-image {
   
   
   width: 470px;
   height: 657px;
   background-image: url("../img/mi.jpg");
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
   margin-left: 40%;
}

.kosi-features-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  z-index: -1;
}

@media (max-width: 900px) {
  .kosi-features-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kosi-features-image {
    order: -1;
    height: 350px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .kosi-features-image {
    height: 280px;
  }
}



.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 50px 0;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 70, 175, 0.1);
    z-index: 1;
}

.flow-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 3px solid #0046af;
    color: #0046af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    transition: 0.3s;
}

.flow-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    padding: 0 10px;
}

.flow-item:hover .flow-icon {
    background: #ff6600;
    border-color: #ff6600;
    color: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}


.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.goal-card {
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border-bottom: 4px solid #ddd;
}

.goal-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.goal-card h4 {
    margin: 0;
    font-size: 1rem;
    color: #001a38;
}

.goal-card.orange { border-color: #ff6600; }
.goal-card.orange .goal-indicator { background: #ff6600; box-shadow: 0 0 10px #ff6600; }

.goal-card.blue { border-color: #0046af; }
.goal-card.blue .goal-indicator { background: #0046af; box-shadow: 0 0 10px #0046af; }

.goal-card.dark { border-color: #001a38; }
.goal-card.dark .goal-indicator { background: #001a38; box-shadow: 0 0 10px #001a38; }

.goal-card:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
}

@media (max-width: 992px) {
    .process-flow { flex-direction: column; gap: 30px; }
    .process-flow::before { display: none; }
    .flow-item { text-align: left; display: flex; align-items: center; gap: 20px; }
    .flow-icon { margin: 0; flex-shrink: 0; }
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--mt-white);
    padding: 40px 30px;
    border-radius: 16px; 
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; 
    height: 4px;
    background: linear-gradient(to right, var(--mt-blue-roi), var(--mt-orange)); 
    transition: width 0.4s ease; 
}

.card:hover::after {
    width: 100%; 
}

.card h3 {
    color: var(--mt-blue-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.card h3::before { display: none; } 
.card h3::after { display: none; } 

.card p {
    font-size: 0.9rem;
    color: var(--mt-text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}



.feature-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item-pro {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0, 70, 175, 0.06);
    box-shadow: 0 10px 30px rgba(0, 70, 175, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.feature-item-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 70, 175, 0.12);
    border-color: #0046af;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0046af 0%, #0072ff 100%);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.feature-item-pro:hover .icon-box {
    background: #ff6600; 
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.content-box h4 {
    color: #001a38;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-item-pro:hover h4 {
    color: #0046af;
}

.content-box p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.feature-item-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ff6600;
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.feature-item-pro:hover::after {
    width: 80%; 
}


@media (max-width: 768px) {
    .feature-grid-pro {
        grid-template-columns: 1fr;
    }
    .feature-item-pro {
        padding: 25px;
    }
}





.steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.steps {
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.steps li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 70, 175, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.steps li:hover {
    background-color: #0046af;
    transform: translateX(15px);
    border-color: #0046af;
}

.steps li::before {
    content: counter(step-counter);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 70, 175, 0.1);
    color: #0046af;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.steps li:hover::before {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.content-step h4 {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #001a38;
    transition: color 0.3s ease;
}

.content-step p {
    margin: 0;
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.steps li:hover .content-step h4 { color: #ffffff; }
.steps li:hover .content-step p { color: rgba(255, 255, 255, 0.85); }

.steps-image-container {
    position: sticky;
    top: 100px; 
    width: 100%;           
    max-width: 470px;      
    aspect-ratio: 470 / 657; 
    background-image: url("../img/milhome.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


@media (max-width: 1024px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-image-container {
        position: relative;   
        top: auto;
        margin: 0 auto;       
        max-width: 350px;
    }

    .steps li:hover {
        transform: translateX(10px); 
    }
}

@media (max-width: 768px) {
    .steps-wrapper {
        gap: 30px;
        margin-top: 30px;
    }

    .steps li {
        padding: 18px 20px;
        border-radius: 14px;
    }

    .steps li::before {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 18px;
        border-radius: 10px;
    }

    .content-step h4 {
        font-size: 1rem;
    }

    .content-step p {
        font-size: 0.9rem;
    }

    .steps li:hover {
        transform: translateX(8px);
    }

    .steps-image-container {
        max-width: 280px;
    }
}


@media (max-width: 480px) {
    .steps li {
        padding: 15px;
        gap: 15px; 
    }

    .steps li::before {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 14px;
    }

    .steps-image-container {
        max-width: 220px;
    }
}


.section-simple-pro {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333;
}

.header-simple {
    margin-bottom: 50px;
    border-left: 5px solid #ff6600;
    padding-left: 25px;
}

.header-simple h2 {
    font-size: 2rem;
    color: #0046af;
    margin-bottom: 15px;
}

.header-simple p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
}

.solution-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solution-item {
    display: flex;
    gap: 20px;
}

.item-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6600;
    opacity: 0.5;
}

.item-text h4 {
    font-size: 1.2rem;
    color: #001a38;
    margin-bottom: 10px;
}

.item-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.coordination-simple {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.coordination-simple h3 {
    color: #0046af;
    margin-bottom: 10px;
}

.actor-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin: 20px 0;
}

.actor-list li {
    font-weight: 700;
    color: #001a38;
    position: relative;
    padding-left: 20px;
}

.actor-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6600;
}

.coordination-footer {
    margin-top: 20px;
    font-style: italic;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}



.security-pro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.security-main-header {
    margin-bottom: 40px;
}

.security-badge {
    color: #0046af;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.security-main-header h2 {
    font-size: 1.8rem;
    color: #001a38;
    margin-bottom: 10px;
}

.security-intro {
    font-size: 1rem;
    color: #64748b;
    max-width: 700px;
}

.security-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.security-pro-card {
    padding: 20px;
    border-bottom: 2px solid #f1f5f9;
    transition: 0.3s;
}

.security-pro-card:hover {
    border-bottom-color: #ff6600;
}

.security-line {
    width: 20px;
    height: 3px;
    background: #0046af;
    margin-bottom: 15px;
}

.security-pro-card h4 {
    color: #001a38;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.security-pro-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-simple-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #edf2f7;
    text-align: left;
}

.footer-accent-line {
    width: 40px;
    height: 4px;
    background: #ff6600;
    margin-bottom: 20px;
}

.security-simple-footer h3 {
    font-size: 1.3rem;
    color: #001a38;
    margin-bottom: 8px;
}

.security-simple-footer p {
    font-size: 1rem;
    color: #64748b;
    max-width: 800px;
}


@media (max-width: 992px) {
    .steps-wrapper {
        grid-template-columns: 1fr; 
    }
    .steps-image-container {
        position: relative;
        top: 0;
        height: 300px;
        order: -1; 
    }
}

@media (max-width: 600px) {
    .steps li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .steps li::before {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .solution-list { grid-template-columns: 1fr; }
    .coordination-simple { padding: 25px; }
}

.section-cta-milticket {
    padding: 80px 0;
    background-color: #f8fafc; 
}

.cta-white-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid #edf2f7;
}

.cta-label-orange {
    color: #ff6600;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.cta-main-title {
    font-size: 1.2rem;
    color: #0a4296;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-description {
    color: #475569;
    font-size: 1 rem;
    line-height: 1.6;
    margin-left: 0%;
}

.cta-separator {
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
}

.cta-statement h4 {
    font-size: 1.2rem;
    color: #0a4296;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-statement p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-actions-title {
    font-size: 1rem;
    font-weight: 700;
    color: #001a38;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.btn-item {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-subtext {
    font-size: 0.9rem;
    color: #878a8b;
    line-height: 1.5;
    margin: 0;
}

.btn-plus-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.plus-sign {
    font-size: 1.3rem;
    font-weight: 300;
}

.btn-blue { 
    background: linear-gradient(180deg, #0056d6 0%, #134591 80%);
    box-shadow: 0 4px 15px rgba(0, 70, 175, 0.2);
}

.btn-orange { 
    background: linear-gradient(180deg, #f14d01 0%, #ff5202 80%);
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.2);
}


.btn-dark { 
    background: linear-gradient(180deg, hsl(150, 9%, 91%) 100% , hsl(150, 9%, 91%) 100%);
    color: #2064f7; 
    box-shadow: 0 4px 15px rgba(255, 187, 42, 0.2);
}

.btn-plus-style:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-footer-clean {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.cta-footer-clean p {
    font-size: 1rem;
    color: #154c99;
    font-style: italic;
    margin: 0;
}

@media (max-width: 992px) {
    .cta-button-row {
        flex-direction: column;
        gap: 35px;
    }
    .cta-white-box {
        padding: 30px;
    }
    .btn-plus-style {
        width: 100%;
    }
}


@media (max-width: 992px) {
    .section h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero { padding: 80px 0 100px; }
    .section { padding: 60px 0; }
    .section h2 { font-size: 1.8rem; }
    .features, .grid { grid-template-columns: 1fr; } 
    .buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; text-align: center; }
    .steps li { flex-direction: column; text-align: center; padding: 25px; }
    .steps li::before { margin-right: 0; margin-bottom: 15px; }
}





