:root {
  /* Colors - Toy Giant Palette (Estrela/RiHappy Inspired) */
  --primary-blue: #00529c;
  /* Star Blue - Deep & Trustworthy */
  --secondary-blue: #00386b;
  /* Darker shade */
  --joy-yellow: #ffde00;
  /* Happy Yellow - Vibrance */
  --play-red: #e31e24;
  /* Action Red - CTA */

  --accent-bg: #fffdf5;
  /* Warm Cream Background */
  --white: #ffffff;
  --gray-100: #f4f4f4;
  --gray-800: #2d3436;
  /* Dark background for footer */
  --text-dark: #2d3436;
  --text-light: #636e72;

  /* Specific Section Colors */
  --kids-primary: var(--joy-yellow);
  --kids-secondary: var(--play-red);
  --kids-bg: #fffcea;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 5rem;
  --spacing-xl: 10rem;

  /* Typography - Chunky & Friendly */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Nunito', sans-serif;
  /* Rounded for everything */

  /* UI - Toy Shapes */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 50px;

  --shadow-soft: 0 10px 25px rgba(0, 82, 156, 0.1);
  --shadow-pop: 0 10px 0 rgba(0, 0, 0, 0.1);
  /* "Toy block" shadow */
  --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Bouncy */
}

/* Top Bar */
.top-bar {
  background-color: var(--play-red);
  color: var(--white);
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(137% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--white);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--accent-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: var(--spacing-lg) 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Joyful Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: var(--radius-pill);
  /* Pill shape */
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  /* Much larger */
  font-weight: 900;
  /* Extra Bold */
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;

  /* Modern Gradient Text */
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-blue);
  /* Fallback */

  letter-spacing: -1.5px;
  /* Tighter for modern look */
  padding-bottom: 5px;
  /* Space for underline */
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 8px;
  background: var(--primary-blue);
  margin: 0 auto;
  border-radius: 50px;
  opacity: 0.2;
  /* Subtle underline */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  position: sticky;
  /* Changed to sticky */
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 0.5rem 0;
  /* Reduced vertical padding to keep bar tight with big logo */
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--joy-yellow);
  /* Toy brand accent */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 120px;
  /* Massive Toy Brand Size */
  margin-top: 10px;
  /* Push down slightly to overlap/pop */
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.1));
  transition: var(--transition);
  transform-origin: center;
}

.logo:hover img {
  transform: scale(1.15) rotate(-5deg);
  /* More dramatic playful tilt */
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 800;
  /* Extra Bold */
  text-transform: uppercase;
  /* Retail style */
  font-size: 0.95rem;
  color: var(--primary-blue);
  transition: var(--transition);
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

.nav-links a:hover {
  background-color: var(--joy-yellow);
  color: var(--primary-blue);
  box-shadow: var(--shadow-pop);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero */
.hero {
  padding-top: var(--spacing-lg);
  /* Sticky header fix */
  padding-bottom: var(--spacing-xl);
  background-image: linear-gradient(rgba(0, 56, 107, 0.6), rgba(0, 56, 107, 0.4)), url('../imagens/logo/Desenho pagina principal.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  /* Huge */
  font-weight: 900;
  color: var(--joy-yellow);
  max-width: 900px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.1;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About */
.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  text-align: center;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Products */
.category-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-container {
  height: 200px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.5rem;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .card-img-container img {
  transform: scale(1.2);
}

.card-content {
  padding: var(--spacing-sm);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.btn-ask {
  width: 100%;
  padding: 0.6rem;
  margin-top: 1rem;
  background-color: var(--gray-100);
  color: var(--text-dark);
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.product-card:hover .btn-ask {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Card Actions Container */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Ver Detalhes Button */
.btn-details {
  width: 100%;
  padding: 0.6rem;
  background-color: var(--primary-blue);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-details:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 82, 156, 0.3);
}

.product-card:hover .btn-details {
  background-color: var(--joy-yellow);
  color: var(--primary-blue);
}

/* Category Specifics */
.section-kids {
  background-color: var(--kids-bg);
  position: relative;
  overflow: hidden;
}

/* Playful background blobs */
.section-kids::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 193, 7, 0.2);
  border-radius: 50% 30% 70% 40%;
  z-index: 0;
}

.section-kids::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(253, 126, 20, 0.1);
  border-radius: 30% 70% 40% 60%;
  z-index: 0;
}

.section-kids .container {
  position: relative;
  z-index: 1;
}

.section-kids .section-title {
  color: var(--kids-secondary);
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.section-kids .section-title::after {
  background-color: var(--kids-primary);
  width: 80px;
  height: 6px;
  border-radius: 10px;
}

.section-kids .product-card {
  border: 2px solid var(--kids-bg);
  border-radius: 20px;
}

.section-kids .product-card:hover {
  border-color: var(--kids-primary);
  transform: translateY(-8px) rotate(1deg);
}

.section-kids .product-card:hover .btn-ask {
  background-color: var(--kids-secondary);
  border-radius: 20px;
}

/* INMETRO Highlight */
.inmetro-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f0fdf4;
  /* Light green background */
  border: 1px solid #bbf7d0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: #166534;
  text-align: left;
  margin: 1rem auto;
  max-width: 600px;
}

.inmetro-highlight i {
  min-width: 40px;
  height: 40px;
  color: #16a34a;
}

/* Representatives */
.representatives {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: var(--spacing-lg) 0;
}

.representatives .section-title {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}

.rep-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.rep-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.rep-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.rep-form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact/Footer */
.footer {
  background-color: var(--gray-800);
  color: var(--white);
  padding: var(--spacing-lg) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--joy-yellow);
  /* Highlight */
}

/* Enhanced Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.contact-desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--gray-200);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-box {
  background-color: var(--joy-yellow);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.contact-row strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-row p {
  color: var(--gray-200);
  font-size: 1rem;
  line-height: 1.4;
}

.map-container {
  height: 400px;
  /* Taller map */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: var(--text-light);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  font-size: 2rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding-top: 120px;
  }
}

/* --- Product Detail Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--play-red);
  color: white;
}

/* Gallery Styles */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-img-container {
  height: 400px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.main-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-img-container:hover img {
  transform: scale(1.4);
}

.thumb-grid {
  display: flex;
  justify-content: center;
  /* Center thumbnails if few */
  gap: 1rem;
  margin-top: 0.5rem;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.thumb-item:hover {
  transform: translateY(-2px);
  border-color: var(--gray-400);
}

.thumb-item.active {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 6px rgba(0, 82, 156, 0.15);
}

/* Content Details Styles */
.product-info-panel h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.wholesale-badge {
  display: inline-block;
  background: var(--joy-yellow);
  color: var(--primary-blue);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-pop);
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.spec-item label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
  margin-bottom: 2px;
}

.spec-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.logistics-box {
  border-left: 5px solid var(--joy-yellow);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.logistics-box p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wholesale-calculator {
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.calc-title {
  font-weight: 800;
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.calc-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.calc-row input {
  width: 85px;
  padding: 12px;
  border: 3px solid var(--primary-blue);
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.calc-result {
  font-weight: 700;
  color: var(--secondary-blue);
  font-size: 1.1rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-actions .btn {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Modal Fix */
@media (max-width: 768px) {
  .modal-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    margin: 10px;
    max-height: 95vh;
  }

  .main-img-container {
    height: 300px;
  }
}

/* Customers Section */
.clientes-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--gray-100);
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cliente-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-pop);
  transition: var(--transition);
  border: 2px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cliente-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: var(--joy-yellow);
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.cliente-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: #f8f9fa;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.cliente-card:hover img {
  opacity: 1;
}

.cliente-endereco {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

/* Customers Responsiveness */
@media (max-width: 900px) {
  .clientes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Nav Highlight */
.nav-highlight {
  background-color: var(--joy-yellow);
  color: var(--primary-blue) !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 800;
}

.nav-highlight:hover {
  background-color: #ffc107;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cliente-endereco {
    font-size: 0.75rem;
  }
}