@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: radial-gradient(circle at top left, rgba(15, 95, 255, 0.09), transparent 60%), radial-gradient(circle at bottom right, rgba(255, 45, 45, 0.05), transparent 30%), linear-gradient(135deg, #f8fbff 0%, #fcfcff 50%, #fff8fa 100%);
  color: #111827;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

hr {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #cdcfce, transparent);
  box-shadow: 0 0 8px rgba(7, 149, 168, 0.6);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

h1.titulo-interna {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 36px;
  padding: 60px 0px 30px 0px;
  color: #7D796F;
}
h1.titulo-interna strong {
  font-weight: 800;
  color: #7D796F;
}

.container-mid {
  width: 95%;
  max-width: 1360px;
  margin: auto;
}

.container-full {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.container-full2 {
  width: 100%;
  max-width: 1940px;
  margin: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  transition: 0.4s;
}
.header .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo img {
  width: 300px;
}

body.loading {
  overflow: hidden;
}
body.loading .site-wrapper,
body.loading .header,
body.loading main,
body.loading footer {
  opacity: 0;
  visibility: hidden;
}

#intro-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 95, 255, 0.08), transparent 40%), radial-gradient(circle at center, rgba(255, 45, 45, 0.06), transparent 60%);
}

.intro-logo {
  position: relative;
  z-index: 10;
}
.intro-logo img {
  width: 280px;
  animation: logoZoomRotate 8s ease forwards;
}

@keyframes logoZoomRotate {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: scale(2) rotate(360deg);
  }
  65% {
    opacity: 1;
    transform: scale(2) rotate(360deg);
  }
  80% {
    opacity: 1;
    transform: scale(1.3) rotate(720deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(1080deg);
  }
}
@media (max-width: 600px) {
  .intro-logo img {
    width: 180px;
  }
}
.menu ul {
  display: flex;
  align-items: center;
  gap: 45px;
}
.menu a {
  position: relative;
  color: #1c2230;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s;
}
.menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  transition: 0.4s;
  border-radius: 20px;
}
.menu a:hover {
  color: #ff2d2d;
}
.menu a:hover::after {
  width: 100%;
}
.menu .active {
  color: #ff2d2d;
}
.menu .active::after {
  width: 100%;
}

.btn-whatsapp {
  height: 52px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  background: white;
  border: 1.5px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #0f5fff, #ff2d2d);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #1c2230;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.4s;
}
.btn-whatsapp i {
  font-size: 18px;
  color: #ff2d2d;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 95, 255, 0.15), 0 10px 25px rgba(255, 45, 45, 0.15);
}

.menu-mobile {
  width: 45px;
  height: 45px;
  border: none;
  background: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.menu-mobile span {
  width: 100%;
  height: 2px;
  background: #1c2230;
  border-radius: 20px;
  transition: 0.4s;
}

@media (max-width: 1100px) {
  .menu {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 82px);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
  }
  .menu ul {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .menu.active {
    left: 0;
  }
  .btn-whatsapp {
    display: none;
  }
  .menu-mobile {
    display: flex;
  }
  .menu-mobile.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }
  .menu-mobile.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-mobile.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 180px;
  }
  .header .container {
    padding: 16px;
  }
}
.banner-home {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}
.banner-home .bannerSwiper,
.banner-home .swiper-wrapper,
.banner-home .swiper-slide {
  width: 100%;
  height: 100%;
}
.banner-home .banner-item {
  position: relative;
  display: flex;
  align-items: center;
}
.banner-home .banner-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-home .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomBanner 10s linear infinite alternate;
}
.banner-home .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.banner-home .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.banner-home .banner-content {
  width: 100%;
  max-width: 600px;
}
.banner-home .banner-content span {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6a6a6a;
  animation: fadeUp 0.8s ease;
}
.banner-home .banner-content h1,
.banner-home .banner-content h2 {
  font-size: 78px;
  line-height: 1.05;
  font-weight: 700;
  color: #0e1b2f;
  margin-bottom: 25px;
  animation: fadeUp 1s ease;
}
.banner-home .banner-content strong {
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-home .banner-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #4e4e4e;
  margin-bottom: 35px;
  animation: fadeUp 1.2s ease;
}
.banner-home .btn-banner {
  width: max-content;
  height: 58px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s;
  animation: fadeUp 1.4s ease;
}
.banner-home .btn-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 95, 255, 0.25), 0 10px 30px rgba(255, 45, 45, 0.25);
}
.banner-home .swiper-pagination {
  bottom: 40px !important;
}
.banner-home .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 1;
}
.banner-home .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  width: 35px;
  border-radius: 30px;
}

.banner-content {
  animation: flutuar 5s ease-in-out infinite;
}

@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes zoomBanner {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .banner-home {
    height: 850px;
  }
  .banner-home .container {
    padding: 0 25px;
  }
  .banner-home .banner-content h1,
  .banner-home .banner-content h2 {
    font-size: 54px;
  }
  .banner-home .banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .banner-home {
    height: 650px;
  }
  .banner-home .banner-image img {
    object-fit: cover;
    object-position: center right;
  }
  .banner-home .banner-content {
    max-width: 100%;
    text-align: left;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .banner-home .banner-content span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #fff;
  }
  .banner-home .banner-content h1,
  .banner-home .banner-content h2 {
    font-size: 36px;
    line-height: 1.1;
  }
  .banner-home .banner-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
  }
  .banner-home .btn-banner {
    width: 100%;
    justify-content: center;
  }
}
.lojas-home {
  padding: 140px 0;
}
.lojas-home .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
}
.lojas-home .titulo-section {
  text-align: center;
  margin-bottom: 70px;
}
.lojas-home .titulo-section span {
  display: block;
  margin-bottom: 15px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.lojas-home .titulo-section h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #101828;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .lojas-home .titulo-section h2 {
    font-size: 30px;
  }
}
.lojas-home .lojas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .lojas-home .lojas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.lojas-home .loja-card {
  height: 650px;
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: 0.5s;
}
.lojas-home .loja-card:hover {
  transform: translateY(-10px);
}
.lojas-home .loja-card:hover .imagem img {
  transform: scale(1.08);
}
.lojas-home .loja-card:hover .conteudo {
  transform: translateY(-10px);
}
.lojas-home .loja-card .imagem {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lojas-home .loja-card .imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: 1.5s;
}
.lojas-home .loja-card .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.lojas-home .loja-card .conteudo {
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 40px;
  transition: 0.5s;
}
.lojas-home .loja-card .conteudo span {
  display: block;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
}
.lojas-home .loja-card .conteudo h3 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
}
.lojas-home .loja-card .conteudo p {
  color: #eaeaea;
  line-height: 1.8;
  margin-bottom: 30px;
}
.lojas-home .loja-card .conteudo .btn-loja {
  width: max-content;
  height: 55px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lojas-home .loja-card .conteudo .btn-loja:hover {
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  animation: fadeUp 1.4s ease;
}
@media screen and (max-width: 600px) {
  .lojas-home .loja-card {
    height: 300px;
    border-radius: 25px;
  }
  .lojas-home .loja-card .conteudo {
    padding: 10px;
  }
  .lojas-home .loja-card .conteudo span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
  }
  .lojas-home .loja-card .conteudo h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
  }
  .lojas-home .loja-card .conteudo p {
    color: #eaeaea;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .lojas-home .loja-card .conteudo .btn-loja {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .lojas-home .loja-card .conteudo .btn-loja:hover {
    background: linear-gradient(90deg, #0f5fff, #ff2d2d);
    animation: fadeUp 1.4s ease;
  }
}
@media screen and (max-width: 600px) {
  .lojas-home {
    padding: 80px 0;
  }
}

.single-loja-hero {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.single-loja-hero .hero-image {
  width: 100%;
  height: 100%;
  object-position: left center;
  position: absolute;
  top: 0;
  left: 0;
}
.single-loja-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  animation: zoomHero 12s linear infinite alternate;
}
.single-loja-hero .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .single-loja-hero .overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 20%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.single-loja-hero .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.single-loja-hero .hero-content {
  width: 100%;
  max-width: 650px;
}
.single-loja-hero .hero-content span {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}
.single-loja-hero .hero-content h1 {
  font-size: 90px;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
}
.single-loja-hero .hero-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .single-loja-hero .hero-content p {
    color: #fff;
  }
}
.single-loja-hero .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.single-loja-hero .hero-buttons a {
  height: 58px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s;
}
.single-loja-hero .hero-buttons .btn-whatsapp {
  background: #fff;
  color: #111;
}
.single-loja-hero .hero-buttons .btn-instagram {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #000;
}
@media screen and (max-width: 600px) {
  .single-loja-hero .hero-buttons .btn-instagram {
    color: #fff;
  }
}
@media screen and (max-width: 600px) {
  .single-loja-hero .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .single-loja-hero .hero-buttons .btn-whatsapp {
    padding: 5px 10px;
  }
  .single-loja-hero .hero-buttons .btn-instagram {
    padding: 5px 10px;
  }
}

.sobre-loja {
  padding: 100px 0;
}
.sobre-loja .container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.sobre-loja .left span {
  display: block;
  margin-bottom: 15px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.sobre-loja .left h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #111827;
}
.sobre-loja .right p {
  font-size: 19px;
  line-height: 2;
  color: #4b5563;
  margin-bottom: 35px;
}
.sobre-loja .right .endereco {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111827;
  font-weight: 600;
}

.galeria-loja {
  padding: 120px 0;
}
.galeria-loja .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
}
.galeria-loja .titulo-section {
  text-align: center;
  margin-bottom: 70px;
}
.galeria-loja .titulo-section span {
  display: block;
  margin-bottom: 15px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.galeria-loja .titulo-section h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #111827;
}
.galeria-loja .grid-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.galeria-loja .gallery-item {
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.galeria-loja .gallery-item:hover img {
  transform: scale(1.08);
}
.galeria-loja .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.cta-loja {
  padding: 120px 0;
  background: #fff;
}
.cta-loja .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}
.cta-loja .cta-box {
  padding: 90px;
  border-radius: 40px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  text-align: center;
}
.cta-loja .cta-box h2 {
  font-size: 62px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}
.cta-loja .cta-box p {
  font-size: 20px;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 40px;
}
.cta-loja .cta-box a {
  width: max-content;
  height: 60px;
  padding: 0 35px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes zoomHero {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@media (max-width: 992px) {
  .single-loja-hero .hero-content h1 {
    font-size: 58px;
  }
  .single-loja-hero .hero-content p {
    font-size: 18px;
  }
  .sobre-loja .container {
    grid-template-columns: 1fr;
  }
  .sobre-loja .left h2 {
    font-size: 42px;
  }
  .galeria-loja .grid-galeria {
    grid-template-columns: 1fr 1fr;
  }
  .galeria-loja .titulo-section h2 {
    font-size: 42px;
  }
  .cta-loja .cta-box {
    padding: 60px 30px;
  }
  .cta-loja .cta-box h2 {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .single-loja-hero .container {
    padding: 0 20px;
  }
  .single-loja-hero .hero-content h1 {
    font-size: 42px;
  }
  .single-loja-hero .hero-content p {
    font-size: 16px;
    line-height: 1.8;
  }
  .galeria-loja .grid-galeria {
    grid-template-columns: 1fr;
  }
}
.diferenciais-home {
  padding: 45px 0;
  border-bottom: 1px solid #ececec;
}
.diferenciais-home .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
}
.diferenciais-home .diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
.diferenciais-home .item-diferencial {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.diferenciais-home .item-diferencial .icone {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 95, 255, 0.2);
  background: rgba(15, 95, 255, 0.03);
}
.diferenciais-home .item-diferencial .icone i {
  font-size: 24px;
  color: #0f5fff;
}
.diferenciais-home .item-diferencial .conteudo h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 10px;
}
.diferenciais-home .item-diferencial .conteudo p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}
@media screen and (max-width: 600px) {
  .diferenciais-home .item-diferencial .conteudo h3,
  .diferenciais-home .item-diferencial .conteudo p {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .diferenciais-home .item-diferencial {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.experiencia-home {
  padding: 120px 0;
}
.experiencia-home .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}
.experiencia-home .left span {
  display: block;
  margin-bottom: 20px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.experiencia-home .left h2 {
  font-size: 62px;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 25px;
}
.experiencia-home .left h2 strong {
  color: #ff2d2d;
}
.experiencia-home .left p {
  font-size: 18px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 35px;
}
.experiencia-home .btn-experiencia {
  width: max-content;
  height: 58px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid #ff2d2d;
  color: #ff2d2d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s;
}
.experiencia-home .btn-experiencia:hover {
  background: #ff2d2d;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 45, 45, 0.18);
}
.experiencia-home .right {
  position: relative;
}
.experiencia-home .right img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1100px) {
  .diferenciais-home .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }
  .experiencia-home .container {
    grid-template-columns: 1fr;
  }
  .experiencia-home .left h2 {
    font-size: 48px;
  }
}
@media (max-width: 600px) {
  .diferenciais-home .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .experiencia-home {
    padding: 90px 0;
  }
  .experiencia-home .container {
    padding: 0 20px;
  }
  .experiencia-home .left h2 {
    font-size: 38px;
  }
  .experiencia-home .left p {
    font-size: 16px;
  }
  .experiencia-home .right img {
    height: 420px;
  }
  .experiencia-home .btn-experiencia {
    width: 100%;
    justify-content: center;
  }
}
.hero-sobre {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-sobre .hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-sobre .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomHero 10s linear infinite alternate;
}
.hero-sobre .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-sobre .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.hero-sobre .hero-content {
  width: 100%;
  max-width: 700px;
}
.hero-sobre .hero-content span {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}
.hero-sobre .hero-content h1 {
  font-size: 92px;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
}
.hero-sobre .hero-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #3a3a3a;
}

.historia-sobre {
  padding: 50px 0;
}
.historia-sobre .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.historia-sobre .left img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 35px;
}
.historia-sobre .right span {
  display: block;
  margin-bottom: 20px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.historia-sobre .right h2 {
  font-size: 64px;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 30px;
}
.historia-sobre .right p {
  font-size: 19px;
  line-height: 2;
  color: #6b7280;
}

.numeros-sobre {
  padding: 50px 0;
}
.numeros-sobre .container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.numeros-sobre .numero-item {
  text-align: center;
}
.numeros-sobre .numero-item h3 {
  font-size: 70px;
  color: #fff;
  margin-bottom: 15px;
}
.numeros-sobre .numero-item span {
  color: #d1d5db;
  font-size: 18px;
}

.experiencia-sobre {
  padding: 140px 0;
  background: #f8f8f8;
}
.experiencia-sobre .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experiencia-sobre .left span {
  display: block;
  margin-bottom: 20px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.experiencia-sobre .left h2 {
  font-size: 62px;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 30px;
}
.experiencia-sobre .left p {
  font-size: 19px;
  line-height: 2;
  color: #6b7280;
  margin-bottom: 40px;
}
.experiencia-sobre .itens {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.experiencia-sobre .itens .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.experiencia-sobre .itens .item i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f5fff;
  font-size: 20px;
}
.experiencia-sobre .itens .item span {
  margin: 0;
  color: #111827;
  font-size: 17px;
  letter-spacing: 0;
}
.experiencia-sobre .right img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  border-radius: 35px;
}

.cta-sobre {
  padding: 140px 0;
  background: #fff;
}
.cta-sobre .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}
.cta-sobre .cta-box {
  padding: 100px;
  border-radius: 40px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  text-align: center;
}
.cta-sobre .cta-box span {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}
.cta-sobre .cta-box h2 {
  font-size: 62px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 40px;
}
.cta-sobre .cta-box a {
  width: max-content;
  height: 60px;
  padding: 0 35px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s;
}
.cta-sobre .cta-box a:hover {
  transform: translateY(-4px);
}

@keyframes zoomHero {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@media (max-width: 992px) {
  .hero-sobre {
    height: 600px;
  }
  .hero-sobre .hero-content {
    padding: 50px 0;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .hero-sobre .hero-content h1 {
    font-size: 58px;
  }
  .hero-sobre .hero-content p {
    font-size: 18px;
    color: #fff;
  }
  .historia-sobre .container,
  .experiencia-sobre .container {
    grid-template-columns: 1fr;
  }
  .historia-sobre .right h2,
  .historia-sobre .left h2,
  .experiencia-sobre .right h2,
  .experiencia-sobre .left h2 {
    font-size: 42px;
  }
  .numeros-sobre .container {
    grid-template-columns: 1fr 1fr;
  }
  .cta-sobre .cta-box {
    padding: 60px 30px;
  }
  .cta-sobre .cta-box h2 {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .hero-sobre .container {
    padding: 0 20px;
  }
  .hero-sobre .hero-content h1 {
    font-size: 42px;
  }
  .hero-sobre .hero-content p {
    font-size: 16px;
    line-height: 1.8;
  }
  .historia-sobre,
  .experiencia-sobre,
  .cta-sobre {
    padding: 90px 0;
  }
  .numeros-sobre .container {
    grid-template-columns: 1fr;
  }
  .historia-sobre .left img,
  .historia-sobre .right img,
  .experiencia-sobre .left img,
  .experiencia-sobre .right img {
    height: 420px;
  }
}
.banner-chinelaria {
  padding: 50px;
  border-radius: 35px;
  overflow: hidden;
}
.banner-chinelaria .banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.banner-chinelaria .banner-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-chinelaria .logo-principal {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.banner-chinelaria .logo-principal img {
  width: 100%;
  max-width: 120px;
}
.banner-chinelaria .logo-principal .texto h2 {
  margin: 0;
}
.banner-chinelaria .logo-principal .texto h2 span {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: #111827;
}
.banner-chinelaria .logo-principal .texto h2 strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-chinelaria .subtitulo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.banner-chinelaria .texto {
  margin-top: 25px;
  max-width: 550px;
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
}
.banner-chinelaria .beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.banner-chinelaria .beneficios .item {
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
}
.banner-chinelaria .beneficios .item:hover {
  transform: translateY(-3px);
  border-color: #0f5fff;
}
.banner-chinelaria .beneficios .item i {
  color: #0f5fff;
  font-size: 14px;
}
.banner-chinelaria .beneficios .item span {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.banner-chinelaria .btn-loja {
  width: fit-content;
  height: 56px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.4s;
}
.banner-chinelaria .btn-loja:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 95, 255, 0.2);
}
.banner-chinelaria .banner-imagem img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 1.2s;
}
.banner-chinelaria .banner-imagem:hover img {
  transform: scale(1.04);
}
.banner-chinelaria .rodape-banner {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.banner-chinelaria .contato-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner-chinelaria .contato-item i {
  color: #0f5fff;
}
.banner-chinelaria .contato-item span,
.banner-chinelaria .contato-item a {
  color: #6b7280;
  font-size: 14px;
}
.banner-chinelaria .marcas {
  display: flex;
  align-items: center;
  gap: 20px;
}
.banner-chinelaria .marcas img {
  max-height: 45px;
  opacity: 0.7;
  transition: 0.4s;
}
.banner-chinelaria .marcas a:hover img {
  opacity: 1;
  transform: scale(1.05);
}
@media screen and (max-width: 1150px) {
  .banner-chinelaria .banner-grid {
    gap: 30px;
  }
  .banner-chinelaria .logo-principal .texto h2 span,
  .banner-chinelaria .logo-principal .texto h2 strong {
    font-size: 2rem;
  }
  .banner-chinelaria .banner-imagem img {
    height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .banner-chinelaria {
    padding: 25px;
  }
  .banner-chinelaria .banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .banner-chinelaria .banner-info {
    align-items: center;
    text-align: center;
  }
  .banner-chinelaria .logo-principal {
    flex-direction: column;
  }
  .banner-chinelaria .logo-principal img {
    max-width: 90px;
  }
  .banner-chinelaria .logo-principal .texto h2 span,
  .banner-chinelaria .logo-principal .texto h2 strong {
    font-size: 1.8rem;
  }
  .banner-chinelaria .subtitulo {
    margin: auto;
  }
  .banner-chinelaria .texto {
    max-width: 100%;
    font-size: 14px;
  }
  .banner-chinelaria .beneficios {
    justify-content: center;
  }
  .banner-chinelaria .beneficios .item {
    width: 100%;
    justify-content: center;
  }
  .banner-chinelaria .btn-loja {
    width: 100%;
    justify-content: center;
  }
  .banner-chinelaria .banner-imagem img {
    height: 320px;
    border-radius: 20px;
  }
  .banner-chinelaria .rodape-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .banner-chinelaria .marcas {
    justify-content: center;
    flex-wrap: wrap;
  }
  .banner-chinelaria .marcas img {
    max-height: 35px;
  }
}

.btn-loja {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #c89a42;
  color: #000;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}
.btn-loja:hover {
  transform: translateY(-4px);
}

.banner-imagem {
  position: relative;
  overflow: hidden;
}
.banner-imagem:before {
  content: "";
  position: absolute;
  left: -150px;
  top: -50px;
  width: 200px;
  border: 8px solid #c89a42;
  background-color: #000;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .banner-imagem:before {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .banner-imagem:before {
    display: none;
  }
}
.banner-imagem img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rodape-banner {
  border-top: 2px solid #c89a42;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contato-item i {
  color: #c89a42;
  font-size: 1.2rem;
}
.contato-item span,
.contato-item a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.marcas {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.marcas a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.marcas a:hover {
  transform: translateY(-3px);
}
.marcas img {
  max-height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }
  .banner-info {
    padding: 40px 25px;
  }
  .titulo h2 span,
  .titulo h2 strong {
    font-size: 3rem;
  }
  .subtitulo {
    font-size: 1.3rem;
  }
  .beneficios {
    flex-direction: column;
    gap: 20px;
  }
  .rodape-banner {
    flex-direction: column;
    align-items: center;
  }
  .banner-imagem {
    min-height: 400px;
  }
  .marcas img {
    max-height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
  }
}
.imagem,
.gallery-item,
.hero-image,
.banner-imagem,
.right img,
.left img {
  overflow: hidden;
}
.imagem img,
.gallery-item img,
.hero-image img,
.banner-imagem img,
.right img img,
.left img img {
  transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.imagem:hover img,
.gallery-item:hover img,
.hero-image:hover img,
.banner-imagem:hover img,
.right img:hover img,
.left img:hover img {
  transform: scale(1.08);
}

.right img,
.left img,
.banner-imagem img {
  animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.loja-card,
.gallery-item,
.cta-box {
  position: relative;
}
.loja-card:before,
.gallery-item:before,
.cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: 1.5s;
  z-index: 10;
}
.loja-card:hover:before,
.gallery-item:hover:before,
.cta-box:hover:before {
  left: 180%;
}

.titulo-section h2,
.hero-content h1,
.banner-content h1,
.banner-content h2,
.banner-ex,
.numero-item {
  background: linear-gradient(90deg, #0f5fff, #ff2d2d, #0f5fff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 8s linear infinite;
}

@keyframes gradientMove {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 300% center;
  }
}
.btn-banner,
.btn-loja,
.btn-experiencia,
.cta-box a {
  transition: 0.4s;
}
.btn-banner:hover,
.btn-loja:hover,
.btn-experiencia:hover,
.cta-box a:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(15, 95, 255, 0.25), 0 15px 40px rgba(255, 45, 45, 0.25);
}

.banner-home:after,
.hero-sobre:after,
.single-loja-hero:after {
  content: "";
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
  right: -200px;
  top: -200px;
  background: rgba(15, 95, 255, 0.1);
  filter: blur(120px);
  animation: pulseLight 8s ease-in-out infinite alternate;
}

@keyframes pulseLight {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.4);
  }
}
.item-diferencial {
  transition: 0.4s;
}
.item-diferencial:hover {
  transform: translateY(-10px);
}
.item-diferencial:hover .icone {
  transform: rotate(8deg) scale(1.1);
  background: #0f5fff;
}
.item-diferencial:hover .icone i {
  color: #fff;
}
.item-diferencial .icone {
  transition: 0.4s;
}

.marcas img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.5s;
}
.marcas a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.cta-box {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.cta-box {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.avaliacao .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.avaliacao .container .titulo-section {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.avaliacao .container .titulo-section span {
  display: block;
  margin-bottom: 15px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.avaliacao .container .titulo-section h2 {
  font-size: 58px;
  line-height: 1.2;
  color: #101828;
  font-weight: 700;
}

.footer {
  padding-top: 90px;
  border-top: 1px solid #ececec;
}
.footer .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer .footer-col h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 30px;
}
.footer .footer-info img {
  width: 260px;
  margin-bottom: 25px;
}
.footer .footer-info p {
  max-width: 280px;
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 30px;
}
.footer .redes {
  display: flex;
  gap: 15px;
}
.footer .redes a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  color: #111827;
  transition: 0.4s;
}
.footer .redes a:hover {
  background: #0f5fff;
  color: #fff;
  transform: translateY(-4px);
}
.footer ul li {
  margin-bottom: 18px;
}
.footer ul li a {
  color: #6b7280;
  transition: 0.4s;
}
.footer ul li a:hover {
  color: #0f5fff;
}
.footer .info-item {
  margin-bottom: 22px;
}
.footer .info-item strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}
.footer .info-item span {
  color: #6b7280;
}
.footer .contato {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .contato i {
  color: #0f5fff;
}
.footer .endereco-item {
  margin-bottom: 25px;
}
.footer .endereco-item strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}
.footer .endereco-item p {
  color: #6b7280;
  line-height: 1.8;
}
.footer .copy {
  margin-top: 70px;
  padding: 25px 0;
  border-top: 1px solid #ececec;
}
.footer .copy .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .copy p,
.footer .copy span {
  color: #6b7280;
  font-size: 14px;
}
.footer .copy i {
  color: #ff2d2d;
}
@media screen and (max-width: 600px) {
  .footer .container {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
}

/* ===================================== */
/* MODAL */
/* ===================================== */
.modal-contato {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.modal-contato.active {
  opacity: 1;
  visibility: visible;
}
.modal-contato.active .modal-box {
  transform: translateY(0);
}
.modal-contato .overlay-modal {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}
.modal-contato .modal-box {
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 35px;
  padding: 60px;
  position: relative;
  z-index: 5;
  transform: translateY(40px);
  transition: 0.4s;
}
.modal-contato .close-modal {
  width: 45px;
  height: 45px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: 0.4s;
}
.modal-contato .close-modal:hover {
  background: #ff2d2d;
  color: #fff;
}
.modal-contato .modal-content span {
  display: block;
  margin-bottom: 18px;
  color: #0f5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}
.modal-contato .modal-content h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 35px;
}
.modal-contato .wpcf7-form p {
  margin-bottom: 18px;
}
.modal-contato .wpcf7-form input,
.modal-contato .wpcf7-form textarea {
  width: 100%;
  padding: 18px 22px;
  border: none;
  outline: none;
  border-radius: 16px;
  background: #f3f4f6;
  font-size: 15px;
}
.modal-contato .wpcf7-form textarea {
  height: 160px;
  resize: none;
}
.modal-contato .wpcf7-form .wpcf7-submit {
  width: 100%;
  height: 58px;
  background: linear-gradient(90deg, #0f5fff, #ff2d2d);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s;
}
.modal-contato .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-4px);
}

@media (max-width: 1100px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .footer .container, .footer .footer-info, .footer .contato, .footer .redes {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer .copy .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .modal-contato {
    padding: 20px;
  }
  .modal-contato .modal-box {
    padding: 40px 25px;
  }
  .modal-contato .modal-content h2 {
    font-size: 34px;
  }
}

/*# sourceMappingURL=main.css.map */
