*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background: #F5F5F5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #D4622A;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover {
  color: #B54A1A;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}
button:focus {
  outline: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.business-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  max-width: 450px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .business-card {
    max-width: 500px;
  }
}
.business-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

.card-header {
  background: linear-gradient(180deg, #4e3f3e 0%, #773027 15%, #a3312a 35%, #d8542b 50%, #e69366 60%, #e69366 70%, #b4493a 85%, #7e362c 100%);
  padding: 2rem 2rem 3rem;
  text-align: center;
  position: relative;
  margin: -2rem -2rem 2rem;
}
.card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1A1A1A 0%, #808080 20%, #C0C0C0 50%, #808080 80%, #1A1A1A 100%);
}
.card-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}

.card-logo {
  font-family: "Magneto", "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.5rem;
  color: #1A1A1A;
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .card-logo {
    font-size: 3.2rem;
  }
}

.card-brands-header {
  color: #C0C0C0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.card-tagline {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px rgba(13, 13, 13, 0.5);
}

.profile-card {
  background: #1A1A1A;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
}

.profile-card-header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #D4622A;
}

.profile-card-logo {
  display: flex;
  flex-direction: column;
}
.profile-card-logo .logo-text {
  font-family: "Magneto", "Segoe Script", cursive;
  font-size: 1.5rem;
  color: #D4622A;
  font-style: italic;
  line-height: 1;
}
.profile-card-logo .logo-tagline {
  font-size: 0.75rem;
  color: #C0C0C0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

.profile-card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
  max-width: 50%;
}
.profile-card-brands span {
  font-size: 0.6rem;
  color: #C0C0C0;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-card-body {
  padding: 1.5rem;
  background: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
}

.profile-name {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.profile-title {
  font-size: 0.875rem;
  color: #C0C0C0;
  margin-bottom: 0.25rem;
}

.profile-company {
  font-size: 0.875rem;
  color: #D4622A;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-description {
  font-size: 0.75rem;
  color: rgba(192, 192, 192, 0.7);
  margin-bottom: 1rem;
  line-height: 1.4;
  border-top: 1px solid rgba(192, 192, 192, 0.2);
  padding-top: 0.5rem;
}

.profile-quick-actions {
  display: flex;
  gap: 0.5rem;
}

.quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #C0C0C0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(192, 192, 192, 0.2);
}
.quick-action-btn i {
  font-size: 0.875rem;
}
.quick-action-btn:hover {
  background: #D4622A;
  color: #FFFFFF;
  border-color: #D4622A;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(61, 37, 25, 0.4);
}

.card-contact {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease-in-out;
  border-left: 3px solid transparent;
}
.contact-item:hover {
  background: linear-gradient(135deg, #E8E8E8 0%, #FFFFFF 100%);
  transform: translateX(5px);
  border-left-color: #D4622A;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5A5A5A;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  color: #D4622A;
}

.contact-value {
  color: #1A1A1A;
  font-size: 0.875rem;
  font-weight: 600;
}
.contact-value a {
  color: #1A1A1A;
}
.contact-value a:hover {
  color: #D4622A;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  gap: 0.5rem;
}
.action-btn:hover {
  transform: translateY(-2px);
}
.action-btn:active {
  transform: translateY(0);
}
.action-btn {
  background: linear-gradient(135deg, #E8732D 0%, #D4622A 50%, #B54A1A 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.action-btn:hover {
  box-shadow: 0 10px 30px rgba(212, 98, 42, 0.35);
  background: linear-gradient(135deg, #F28C38 0%, #D4622A 100%);
}
.action-btn {
  padding: 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}
.action-btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  gap: 0.5rem;
}
.action-btn.btn-secondary:hover {
  transform: translateY(-2px);
}
.action-btn.btn-secondary:active {
  transform: translateY(0);
}
.action-btn.btn-secondary {
  background: #1A1A1A;
  color: #FFFFFF;
  border: 2px solid #D4622A;
}
.action-btn.btn-secondary:hover {
  background: #D4622A;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(61, 37, 25, 0.4);
}
.action-btn.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.action-btn.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}
.action-btn.btn-email {
  background: linear-gradient(135deg, #F28C38 0%, #D4622A 100%);
}
.action-btn.btn-email:hover {
  background: linear-gradient(135deg, #E8732D 0%, #D4622A 50%, #B54A1A 100%);
  box-shadow: 0 10px 30px rgba(212, 98, 42, 0.35);
}
.action-btn.btn-full {
  grid-column: 1/-1;
}

.btn-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
}

.card-about {
  margin-bottom: 2rem;
}

.about-title, .brands-title {
  font-size: 1.125rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-title::before, .brands-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #E8732D 0%, #D4622A 50%, #B54A1A 100%);
  border-radius: 0.25rem;
}

.about-text {
  font-size: 0.875rem;
  color: #5A5A5A;
  line-height: 1.6;
  margin-bottom: 0;
}

.card-vehicle-brands {
  margin-bottom: 2rem;
}

.vehicle-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.vehicle-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  border-radius: 0.5rem;
  color: #C0C0C0;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(212, 98, 42, 0.2);
}
.vehicle-brand i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #D4622A;
}
.vehicle-brand span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vehicle-brand:hover {
  background: #D4622A;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(61, 37, 25, 0.4);
}
.vehicle-brand:hover i {
  color: #FFFFFF;
}

.card-brands {
  margin-bottom: 2rem;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #1A1A1A;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #C0C0C0;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.brand-tag:hover {
  background: #D4622A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(61, 37, 25, 0.4);
}

.card-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E8E8E8;
}

.social-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #1A1A1A;
  color: #C0C0C0;
  transition: all 0.3s ease-in-out;
}
.social-link:hover {
  background: #D4622A;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(61, 37, 25, 0.4);
}

.social-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: flex;
  text-align: center;
}

.card-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #E8E8E8;
  margin-top: 2rem;
}

.footer-text {
  font-size: 0.75rem;
  color: #5A5A5A;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #D4622A;
  font-weight: 600;
}
.footer-link:hover {
  text-decoration: underline;
}

.footer-powerby {
  font-size: 0.65rem;
  color: #4A4A4A;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 232, 232, 0.5);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease-in-out;
}
.footer-powerby:hover {
  opacity: 1;
}
.footer-powerby a {
  color: #4A4A4A;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer-powerby a:hover {
  color: #D4622A;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.business-card {
  animation: fadeIn 0.6s ease-out;
}

.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.qr-modal.active {
  opacity: 1;
  pointer-events: all;
}

.qr-content {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 90%;
}
.qr-content img {
  margin: 1.5rem auto;
}

.qr-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  gap: 0.5rem;
}
.qr-close:hover {
  transform: translateY(-2px);
}
.qr-close:active {
  transform: translateY(0);
}
.qr-close {
  background: #1A1A1A;
  color: #FFFFFF;
  border: 2px solid #D4622A;
}
.qr-close:hover {
  background: #D4622A;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(61, 37, 25, 0.4);
}
.qr-close {
  margin-top: 1.5rem;
}

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