/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Configurações do carrossel - OTIMIZADAS PARA RESPONSIVIDADE */
.carousel-caption{
	position: absolute;
	right: 5%;
	bottom: 1.25rem;
	left: 5%;
	padding: 1.25rem;
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.carousel-caption .leftslide{
	width: 100%;
	max-width: 600px;
	text-align: left !important;
}

.carousel-caption .rightslide{
	width: 100%;
	max-width: 600px;
	text-align: right !important;
	margin-left: auto;
}

.carousel-caption .centerslide{
	width: 100%;
	max-width: 600px;
	text-align: center !important;
	margin: 0 auto;
}

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

.intro .item {
  min-height: 556px;
}

.carousel-inner {
  min-height: 300px;
} 

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 90px;
    width: auto;
	margin-right: 50px;
	transition: height 0.3s ease;
}

.nav-logo.shrink .logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
	padding-left: 0rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff5331;
}

.nav-cta {
    background: #ff5331;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}


.nav-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-menu .submenu li {
  
}
svg{
	color:#ff5331;
}

.nav-menu .submenu li a {
  padding: 10px 20px;
  white-space: nowrap;
  color: #333;
}

.nav-menu li {
	position: relative;	
	text-decoration: none;
	list-style-type: none;
}

.nav-menu li.has-submenu:hover .submenu {
  display: block;
}

.nav-menu .submenu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.nav-menu li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    /*min-height: 100;*/
    display: flex;
    align-items: center;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
	background: #102640;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
	color:#fff;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /*color: #2c3e50;*/
}

.hero-subtitle {
    font-size: 1.8rem;
    /*color: #666;*/
    margin-bottom: 2rem;
    line-height: 1.0;
}

.hero-cta {
    display: inline-block;
    background: #ff5331;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    background: #e55a2b;
    transform: translateY(-3px);
}

.hero-image img {
    width: 130%;
    height: auto;
    border-radius: 20px;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #eee;
    color: #102640;
}
.centralizarBotao{
	text-align:center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
    background: #102640;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.stats-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #fff;
}

.features .section-title {
    color: #2c3e50;
    text-align: left;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; 
}
.features-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem; 
}

.feature-item {
    /*background: white;*/
    padding: 0.5rem;
    border-radius: 15px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
}
/*
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
*/
.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.form-group button {
    background: #ff5331;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: white;
}

.clients h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    line-height: 1.3;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff5331;
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background: #102640;
    color: white;  
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-privacy h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-privacy p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-privacy a {
    color: #ff5331;
    text-decoration: none;
}

.privacy-btn {
    background: transparent;
    border: 2px solid #ff5331;
    color: #ff5331;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-btn:hover {
    background: #ff5331;
    color: white;
}

.dna-section {
  background-color: #102640;
  color: white;
  padding: 5rem 1rem;
  text-align: left;
}

.dna-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.dna-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FF6B35;
  font-weight: 700;
}

.dna-description {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  /*max-width: 800px;*/
  margin-left: auto;
  margin-right: auto;
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: left;
}

.dna-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dna-box h2 {
  color: #FF6B35;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.Padrao {
  padding: 4rem 1rem;
  background-color: #f8f9fa; /* ou outra cor de fundo */
}

.Padrao .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.descritionHalf {
	font-size: 1.6rem;
	margin-bottom: 3rem;
	line-height: 1.6;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.backgroundAzul{
	background:#102640;
}

/* CONTROLES DO CARROSSEL - OTIMIZADOS */
.carousel-control-next, .carousel-control-prev{
	width: 8%;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.carousel-control-next:hover, .carousel-control-prev:hover{
	opacity: 1;
}

.carousel-control-prev{
	left: 1rem;
}
.carousel-control-next{
	right: 1rem;
}

/* INDICADORES DO CARROSSEL - MELHORADOS */
.carousel-indicators {
	bottom: 20px;
	margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 5px;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.carousel-indicators .active {
	background-color: #ff5331;
	border-color: #ff5331;
	transform: scale(1.2);
}

.titleHalf {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	color: #102640;
	font-weight: 700;
}
.halfPage {
  flex: 1 1 45%;
}

.halfPage:first-child {
  flex: 0 0 60%; /* texto */
}

.halfPage:last-child {
  flex: 0 0 40%; /* imagem */
}

.halfPage img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.centralizarBotao {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}


.dna-box p,
.dna-box li {
  font-size: 1.3rem;
  line-height: 1.6;
}

.dna-box ul {
  padding-left: 1.2rem;
  list-style: disc;
}
.logorodape{
	width: 20.0rem;
}
.textWhite{
	color:white !important;
	
}
.linkRodape{
	color:white;
	text-decoration:none;
	font-weight: bold;
}
.linkRodape:hover{
	text-decoration:underline;
	color:white;
}
.tituloDivRodape{
	font-size: 1rem;
	color:#687A8C;
	font-weight: bold;
}

.btn-whatsapp{
	color: #fff;
	background-color: #128C7E;
	border-color: #128C7E;
}

.btn-whatsapp:hover{
	color: #fff;
	background-color:#25D366;
	border-color: #25D366;
}
.borderRedesRodape:hover,
.borderRedesRodape{
	border: solid;
	padding: 5px;
	margin: 5px;
	color:white;
	text-decoration:none;
	display: block;
	width: 50px;
	float: left;
	border-radius: 10px;
	text-align:center;
}
.borderRedesRodape svg{
	color: #fff;
}

.formulario{
	font-family: Arial, sans-serif; margin: 0; background: #f7f7f7; 
}

.formulario textarea { width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-top: 5px; }
.formulario select { width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-top: 5px; }
.formulario h2 { color: #002b5b; margin-bottom: 10px; font-size: 26px; }
.formulario label { display: block; margin-top: 15px; font-weight: bold; text-align: left; }
.formulario input { width: 100%; padding: 10px; margin-top: 5px; border-radius: 5px; border: 1px solid #ccc; }
.formulario button { margin-top: 20px; padding: 12px; background-color: #ff7a00; color: white; border: none; border-radius: 8px; cursor: pointer; font-size: 16px; }
.formulario .resultado { background: #102640; padding: 20px; margin-top: 30px; border-radius: 10px; display: none; text-align: left; color: #fff;}
.formulario .whatsapp { display: inline-block; margin-top: 20px; padding: 12px 24px; background: #25d366; color: white; font-weight: bold; text-decoration: none; border-radius: 8px; text-align: center; }
.formulario .whatsapp:hover { background: #1ebe5b; }
.formulario .logo { max-width: 180px; display: block; margin: 0 auto 20px; }
.formulario .lead-text { font-size: 18px; margin-bottom: 30px; color: #fff; text-align: center; }
.formulario .contato { margin-top: 30px; text-align: center; font-size: 16px; color: #fff; }
.formulario .dica { font-size: 13px; color: #777; margin-top: 2px; text-align: left; }
.formulario .lgpd { font-size: 12px; color: #777; margin-top: 20px; text-align: center; }

:root{
  --bg:#072935;        /* fundo painel (ajuste) */
  --text:#e9eef2;      /* texto */
  --muted:#b7c3c8;     /* subtítulo / descrição */
  --red:#d94b4b;
  --green:#2db67d;
  --li-padding:5px 5px;
}

/* painel que cerca as listas */
.panel {
 
  margin: 0 auto;
}

/* lista base */
.listsp {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px 0;
}

/* estilo do li */
.listsp li {
  display: flex;
  align-items: center;
  gap: 12px;                  /* espaço entre ícone e texto */
  padding: var(--li-padding);
  /*margin: 8px 0;*/
  line-height: 1.25;
  font-size: 15px;
  border-radius: 6px;
  background: transparent;    /* se quiser fundo levemente escuro: rgba(255,255,255,0.02) */
  color: var(--text);
}

/* pseudo-ícone à esquerda */
.listsp li::before{
  content: "";                /* substituído por conteúdo específico nas subclasses */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex: 0 0 26px;             /* mantém o tamanho fixo */
  box-shadow: 0 1px 0 rgba(0,0,0,0.25) inset;
}

/* negativo: X vermelho */
.listsp li.negative::before{
  content: "✖";
  background: var(--red);
}

/* positivo: ✓ verde */
.listsp li.positive::before{
  content: "✔";
  background: var(--green);
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #102640; /* fundo azul escuro */
  color: white;
  padding: 40px;
  gap: 40px;
  font-size: 1.2rem;
}

.contact-form, .contact-info {
  flex: 1 1 300px;
}

.contact-form h1 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-form p {
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
}

.contact-form form textarea {
  height: 100px;
  resize: vertical;
}

.contact-form label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.contact-form input[type="checkbox"] {
  margin-right: 8px;
}

.contact-form button {
  background-color: #FF5A00; /* laranja */
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-weight: bold;
}

.office {
  margin-bottom: 20px;
  
}

.office h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.office p a {
  color: white;
  text-decoration: none;
}

.specialist-btn {
  background-color: #FF5A00;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 20px;
}

.whatsapp-contact p {
  font-size: 0.9em;
}

.whatsapp-contact p a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.area-trabalhe-conosco {
  background-color: var(--cor-fundo-principal); /* ex: branco ou cinza claro */
  color: var(--cor-texto-principal);
  padding: 2rem;
}

.area-trabalhe-conosco h2 {
  color: var(--cor-destaque);
}

.form-trabalhe-conosco input,
.form-trabalhe-conosco button {
  border-radius: 4px;
  padding: 0.75rem;
}

.beneficios ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.depoimentos img,
.depoimentos video {
  max-width: 100%;
  border-radius: 8px;
}

.rodapecolcontrolerflex{
	
}

.rodapecolcontrolerRigth{
	text-decoration: none; 
	position:absolute; 
	right:0px;
	bottom: -20px;
}

.imagnessection{
	position:absolute; 
	bottom:0px;
}

/* RESPONSIVE DESIGN - OTIMIZADO PARA CARROSSEL */

/* Tablets e telas médias */
@media (max-width: 992px) {
	
.imagnesNoMob{
	display:none !important;
}

.imagnesNoMob2{
	display:none !important;
}

.col-7,.col-8,.col-6,.col-3{
	width:100%;
}
    .carousel-caption {
        right: 3%;
        left: 3%;
        top: 40%;
        padding: 1rem;
    }
    
    .carousel-caption .leftslide,
    .carousel-caption .rightslide,
    .carousel-caption .centerslide {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-control-next, .carousel-control-prev {
        width: 10%;
    }
	.rodapecolcontrolerflex{
		display: block;
	}
	.rodapecolcontrolerRigth{
		position: initial;
	}
	.ajustetamanhomod{
			width:100%;
	}
}

/* Smartphones e telas pequenas */
@media (max-width: 768px) {
	
.imagnesNoMob{
	display:none !important;
}

.imagnesNoMob2{
	display:none !important;
}

.col-7,.col-8{
	width:100%;
}
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* CARROSSEL MOBILE - OTIMIZAÇÕES PRINCIPAIS */
    .carousel-caption {
        position: absolute;
        right: 2%;
        left: 2%;
        bottom: 10%;
        top: auto;
        transform: none;
        padding: 1rem;
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
    
    .carousel-caption .leftslide,
    .carousel-caption .rightslide,
    .carousel-caption .centerslide {
        width: 100%;
        max-width: none;
        text-align: center !important;
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .carousel-control-next, .carousel-control-prev {
        width: 12%;
        opacity: 0.6;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .carousel-inner {
        min-height: 250px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image{
        display:none;
    }
    .stats-image{
        display:none;
    }
    .Padrao {
        flex-direction: column;
        text-align: left;
    }

    .halfPage {
        flex: 1 1 100%;
    }

    .halfPage img {
        margin-top: 1rem;
    }
	.ajustetamanhomod{
			width:100%;
	}
}

/* Smartphones muito pequenos */
@media (max-width: 480px) {
	
.imagnesNoMob{
	display:none !important;
}

.imagnesNoMob2{
	display:none !important;
}
.col-7,.col-8{
	width:100%;
}

    .carousel-caption {
        right: 1%;
        left: 1%;
        bottom: 5%;
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-cta {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .carousel-control-next, .carousel-control-prev {
        width: 15%;
    }
    
    .carousel-control-prev {
        left: 0.5rem;
    }
    
    .carousel-control-next {
        right: 0.5rem;
    }
    
    .hero{
        min-height: 100vh;
    }
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    .hero-image{
        display:none;
    }
    .stats-image{
        display:none;
    }
    .Padrao {
        flex-direction: column;
        text-align: left;
    }

    .halfPage {
        flex: 1 1 100%;
    }

    .halfPage img {
        margin-top: 1rem;
    }
	.ajustetamanhomod{
			width:100%;
	}
}

/* Telas muito grandes */
@media (min-width: 1400px) {
	
    .carousel-caption {
        right: 8%;
        left: 8%;
    }
    
    .carousel-caption .leftslide,
    .carousel-caption .rightslide,
    .carousel-caption .centerslide {
        max-width: 700px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
}

