:root {
  --bg: #fffafa;
  --bg-soft: #f8eeee;
  --card: #ffffff;
  --text: #2e2e2e;
  --muted: #756d72;
  --primary: #c77f85;
  --primary-dark: #aa676e;
  --line: #ead6d8;
  --shadow: 0 24px 60px rgba(140, 82, 88, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.header {
  width: 100%;
  height: 92px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 250, 250, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 214, 216, .7);
  transition: .3s ease;
}

.header.scrolled {
  height: 74px;
  box-shadow: 0 10px 30px rgba(140, 82, 88, .08);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex-shrink:0;
}

.brand-logo{
  width:220px;
  height:140px;
  object-fit:contain;
  display:block;
}

/* Tablets */
@media (max-width: 980px){

  .brand-logo{
    width:180px;
  }

}

/* Celulares */
@media (max-width: 760px){

  .brand-logo{
    width:145px;
  }

}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav a {
  font-size: 15px;
  color: #4f474b;
  transition: .25s;
}

.nav a:hover {
  color: var(--primary);
}

.nav a.active {
  color: var(--primary);
  font-weight: 800;
  position: relative;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn,
.cart-btn,
.menu-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 700;
}

.cart-btn {
  display: flex;
  gap: 6px;
  align-items: center;
}

.cart-btn span {
  background: var(--primary);
  color: #fff;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.menu-btn {
  display: none;
  font-size: 22px;
}

.hero {
  min-height: 100vh;
  padding: 160px 7% 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,250,.98) 0%, rgba(255,250,250,.88) 42%, rgba(255,250,250,.35) 100%),
    url("inicio.jpg") center/cover;
  z-index: -2;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(199, 127, 133, .14);
  z-index: -1;
}

.hero::before {
  width: 340px;
  height: 340px;
  left: -130px;
  top: 160px;
}

.hero::after {
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -120px;
}

.hero-content {
  max-width: 760px;
}

.pill {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255,255,255,.6);
}

h1,
h2 {
  font-weight: 300;
  letter-spacing: -2px;
}

h1 {
  margin-top: 28px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: .98;
}

h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
}

em {
  color: var(--primary);
  font-style: italic;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.hero p,
.section-title p,
.about-text p,
.contact-info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 660px;
}

.hero p {
  margin-top: 28px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .25s ease;
  font-size: 15px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 18px 35px rgba(199, 127, 133, .28);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 45px rgba(199, 127, 133, .38);
}

.btn.secondary,
.btn.ghost {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats div {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 22px;
  min-width: 150px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.trust,
.section {
  padding: 90px 7%;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card,
.service-card,
.product-card,
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(140, 82, 88, .06);
}

.trust-card {
  padding: 32px;
}

.trust-card span,
.service-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 24px;
}

.trust-card h3,
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.trust-card p,
.service-card p,
.product-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 34px;
}

.about-img img {
  border-radius: 26px;
  height: 620px;
  width: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin: 28px 0;
}

.signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.signature strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
}

.signature span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-title h2 {
  margin: 20px 0 16px;
}

.services {
  background: linear-gradient(180deg, #fffafa, #fff5f5);
}

.services-grid,
.products-grid,
.reviews-grid {
  display: grid;
  gap: 26px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  padding: 34px;
  min-height: 250px;
  transition: .25s;
}

.service-card:hover,
.product-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  background: var(--primary);
  color: #fff;
}

.products-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  transition: .25s;
}

.product-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,.88);
  color: var(--primary);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 14px;
  line-height: 1.5;
}

.product-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}

.add-cart {
  padding: 12px 18px;
  font-size: 14px;
}

.cta-section {
  margin: 40px 7%;
  padding: 55px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(199,127,133,.95), rgba(170,103,110,.95)),
    url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta-section .pill {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.cta-section p {
  color: rgba(255,255,255,.9);
  margin-top: 14px;
  max-width: 660px;
  line-height: 1.7;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary);
  white-space: nowrap;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 32px;
}

.review-card strong {
  display: block;
  color: var(--primary);
  margin: 20px 0 8px;
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 60px;
  align-items: start;
  background: linear-gradient(180deg, #fffafa, #fff4f4);
}

.contact-info h2 {
  margin: 24px 0;
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.contact-list a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(140, 82, 88, .06);
}

.contact-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: #313131;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px;
  margin-bottom: 20px;
  font-family: inherit;
  background: #fffafa;
  outline: none;
  transition: .2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(199,127,133,.12);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -430px;
  width: 410px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
}

.cart-panel.active {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header button {
  border: 0;
  background: var(--bg-soft);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary);
}

.cart-items {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}

.cart-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item p {
  color: var(--primary);
  font-weight: 800;
}

.remove-item {
  border: 0;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 18px;
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-footer .btn {
  margin-top: 10px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 1200;
  box-shadow: 0 18px 35px rgba(37,211,102,.35);
  animation: pulse 1.8s infinite;
}

.footer {
  padding: 30px 7%;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 1050px) {
  .trust,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 480px;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .header {
    height: 76px;
    padding: 0 5%;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 5%;
    right: 5%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-btn,
  .cart-btn {
    padding: 9px 11px;
  }

  .hero {
    padding: 125px 5% 70px;
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,250,250,.96), rgba(255,250,250,.82)),
      url("inicio.jpg") center/cover;
  }

  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 40px;
  }

  .hero p,
  .section-title p,
  .about-text p,
  .contact-info p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-stats {
    flex-direction: column;
  }

  .btn,
  .hero-stats div {
    width: 100%;
  }

  .trust,
  .section {
    padding: 65px 5%;
  }

.trust,
.services-grid,
.reviews-grid {
  grid-template-columns: 1fr;
}

.products-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

  .about {
    gap: 35px;
  }

  .about-img {
    padding: 14px;
    border-radius: 24px;
  }

  .about-img img {
    height: 380px;
    border-radius: 20px;
  }

.product-img {
  height: 180px;
}

.product-body {
  padding: 14px;
}

.product-bottom {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.add-cart {
  width: 100%;
  padding: 10px 14px;
}

  .cta-section {
    margin: 20px 5%;
    padding: 35px 24px;
  }

  .contact-form {
    padding: 26px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.page-section.about.active,
.page-section.contact.active {
  display: grid;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  transition:.25s ease;
}

.contact-item i{
  font-size:28px;
}

.contact-item:hover{
  transform:translateY(-4px);
}

.whatsapp i{
  color:#25D366;
}

.instagram i{
  color:#E1306C;
}

.tiktok i{
  color:#000;
}

.facebook i{
  color:#1877F2;
}

.image-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:5000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  padding:20px;
}

.image-modal.active{
  opacity:1;
  pointer-events:auto;
}

.image-modal img{
  max-width:95%;
  max-height:92vh;
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.image-modal-close{
  position:absolute;
  top:20px;
  right:20px;
  width:52px;
  height:52px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:#000;
  font-size:32px;
  cursor:pointer;
  font-weight:700;
}

.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:6000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  padding:20px;
}

.video-modal.active{
  opacity:1;
  pointer-events:auto;
}

.video-box{
  position:relative;
  width:min(1000px,95vw);
  max-height:90vh;
  aspect-ratio:16/9;
  background:#000;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  z-index:6001;
}

.video-box iframe,
.video-box video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  object-fit:cover;
}


.video-modal-close{
  position:absolute;
  top:20px;
  right:20px;
  width:52px;
  height:52px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:#000;
  font-size:32px;
  cursor:pointer;
  font-weight:700;
  z-index:7000;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

@media (max-width:760px){

  .video-modal{
    padding:10px;
  }

  .video-box{
    width:100%;
    max-width:100%;
    max-height:88vh;
    aspect-ratio:9/16;
    border-radius:18px;
  }

.video-modal-close{
  top:12px;
  right:12px;
  width:48px;
  height:48px;
  font-size:30px;
  z-index:7000;
}

}

.video-box{
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.video-box iframe,
.video-box video{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px){

  .video-box{
    max-width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
  }

}

.estado-page{
  min-height:100vh;
  padding:120px 7% 60px;
  background:
    radial-gradient(circle at top left, rgba(199,127,133,.16), transparent 35%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  display:flex;
  align-items:center;
  justify-content:center;
}

.estado-card{
  width:100%;
  max-width:820px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}

.estado-header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:30px;
}

.estado-header img{
  width:68px;
  height:68px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid var(--line);
}

.estado-header h1{
  font-size:clamp(30px,4vw,46px);
  color:var(--primary-dark);
  margin:0;
  letter-spacing:-1px;
}

.estado-header p{
  color:var(--muted);
  font-weight:800;
  margin-top:6px;
}

.estado-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:30px 0;
}

.estado-steps::before{
  content:"";
  position:absolute;
  top:22px;
  left:12%;
  right:12%;
  height:4px;
  background:var(--line);
  border-radius:999px;
}

.estado-step{
  position:relative;
  z-index:1;
  text-align:center;
}

.estado-step span{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  border:3px solid var(--line);
  color:var(--muted);
  display:grid;
  place-items:center;
  margin:0 auto 10px;
  font-weight:900;
}

.estado-step p{
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}

.estado-step.active span{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  border-color:var(--primary);
  color:#fff;
  box-shadow:0 12px 26px rgba(199,127,133,.28);
}

.estado-step.active p{
  color:var(--primary-dark);
}

.estado-info{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  margin-bottom:20px;
  text-align:center;
}

.estado-info h2{
  font-size:26px;
  color:var(--primary-dark);
  margin-bottom:8px;
}

.estado-info p{
  color:var(--muted);
  line-height:1.6;
}

.pedido-detalles{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  margin-bottom:20px;
  background:#fff;
}

.pedido-detalles summary{
  cursor:pointer;
  padding:18px 20px;
  font-weight:900;
  color:var(--primary-dark);
  background:#fffafa;
  list-style:none;
}

.pedido-detalles summary::-webkit-details-marker{
  display:none;
}

.pedido-items{
  padding:10px 20px;
}

.pedido-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  border-bottom:1px dashed var(--line);
}

.pedido-item strong{
  display:block;
  margin-bottom:4px;
}

.pedido-item small{
  color:var(--muted);
}

.pedido-item span{
  color:var(--primary);
  font-weight:900;
}

.pedido-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  font-size:18px;
  background:#fffafa;
}

.pedido-total strong{
  color:var(--primary);
  font-size:22px;
}

@media(max-width:760px){
  .estado-page{
    padding:95px 5% 40px;
  }

  .estado-card{
    padding:24px 18px;
    border-radius:26px;
  }

  .estado-header{
    flex-direction:column;
    text-align:center;
  }

  .estado-steps{
    gap:4px;
  }

  .estado-step span{
    width:38px;
    height:38px;
  }

  .estado-step p{
    font-size:12px;
  }

  .estado-steps::before{
    top:18px;
    left:16%;
    right:16%;
  }

  .pedido-item,
  .pedido-total{
    align-items:flex-start;
  }
}

.pedido-tracking{
  margin-top:8px;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

.pedido-tracking strong{
  color:var(--primary-dark);
}

.pedido-tracking a{
  color:var(--primary);
  font-weight:900;
  text-decoration:none;
  word-break:break-word;
}

.pedido-tracking a:hover{
  text-decoration:underline;
}