@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #F8F9FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #212529;
}

h1 {
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #D4A017;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #B8860B;
}
a:focus {
  outline: 2px solid #D4A017;
  outline-offset: 2px;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
button:focus {
  outline: 2px solid #D4A017;
  outline-offset: 2px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #D4A017;
  outline-offset: 2px;
}

::selection {
  background-color: #D4A017;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #E9ECEF;
}

::-webkit-scrollbar-thumb {
  background: #CED4DA;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ADB5BD;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-primary {
  color: #D4A017;
}

.text-secondary {
  color: #6C757D;
}

.text-muted {
  color: #ADB5BD;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.mt-sm {
  margin-top: 8px;
}

.mt-md {
  margin-top: 16px;
}

.mt-lg {
  margin-top: 24px;
}

.mb-sm {
  margin-bottom: 8px;
}

.mb-md {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 24px;
}

.pt-sm {
  padding-top: 8px;
}

.pt-md {
  padding-top: 16px;
}

.pt-lg {
  padding-top: 24px;
}

.pb-sm {
  padding-bottom: 8px;
}

.pb-md {
  padding-bottom: 16px;
}

.pb-lg {
  padding-bottom: 24px;
}

.vcard {
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media (min-width: 768px) {
  .vcard {
    min-height: auto;
    border-radius: 24px;
    margin: 32px auto;
  }
}

.vcard__header {
  background: linear-gradient(135deg, #343A40 0%, #212529 100%);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vcard__header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.vcard__brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.vcard__brands img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 150ms ease;
}
.vcard__brands img:hover {
  opacity: 1;
}

.vcard__logo {
  margin-bottom: 16px;
}
.vcard__logo img {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.vcard__company {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vcard__tagline {
  color: #D4A017;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vcard__profile {
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.vcard__profile-card {
  width: 100%;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.vcard__profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vcard__profile-card-header {
  background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vcard__profile-card-logo-wrapper {
  flex-shrink: 0;
}
.vcard__profile-card-logo-wrapper .vcard__profile-card-logo {
  max-width: 80px;
  height: auto;
  filter: brightness(1.1);
}

.vcard__profile-card-brands {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.vcard__profile-card-brands img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 150ms ease;
}
.vcard__profile-card-brands img:hover {
  opacity: 1;
}

.vcard__profile-card-body {
  padding: 24px 16px;
  text-align: left;
  background: #FFFFFF;
  border-bottom: 1px solid #E9ECEF;
}

.vcard__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.vcard__position {
  font-size: 0.875rem;
  color: #6C757D;
  font-weight: 400;
  margin-bottom: 16px;
}

.vcard__company-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #D4A017;
  margin-bottom: 4px;
}

.vcard__company-tagline {
  font-size: 0.75rem;
  color: #ADB5BD;
  letter-spacing: 0.3px;
}

.vcard__profile-card-footer {
  padding: 16px 24px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vcard__service-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #6C757D;
}
.vcard__service-info i {
  color: #D4A017;
  font-size: 0.875rem;
}

.vcard__action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vcard__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 150ms ease;
  text-decoration: none;
}
.vcard__action-btn--phone {
  background: rgba(52, 58, 64, 0.1);
  color: #343A40;
}
.vcard__action-btn--phone:hover {
  background: #343A40;
  color: #FFFFFF;
}
.vcard__action-btn--email {
  background: rgba(52, 58, 64, 0.1);
  color: #343A40;
}
.vcard__action-btn--email:hover {
  background: #343A40;
  color: #FFFFFF;
}
.vcard__action-btn--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.vcard__action-btn--whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
}

.vcard__actions {
  padding: 16px 24px;
  display: flex;
  gap: 8px;
  background: #F8F9FA;
}

.vcard__action-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: #FFFFFF;
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  cursor: pointer;
  transition: all 300ms ease;
  text-align: center;
  min-width: 0;
}
.vcard__action-main:hover {
  border-color: #D4A017;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.vcard__action-main:active {
  transform: translateY(0);
}
.vcard__action-main--save .vcard__action-main-icon {
  background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
  color: #FFFFFF;
}
.vcard__action-main--save:hover {
  border-color: #D4A017;
  background: rgba(212, 160, 23, 0.03);
}
.vcard__action-main--share .vcard__action-main-icon {
  background: linear-gradient(135deg, #1C3F94 0%, #152F6E 100%);
  color: #FFFFFF;
}
.vcard__action-main--share:hover {
  border-color: #1C3F94;
  background: rgba(28, 63, 148, 0.03);
}

.vcard__action-main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.vcard__action-main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.vcard__action-main-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.2;
}
.vcard__action-main-text small {
  font-size: 0.75rem;
  color: #ADB5BD;
  line-height: 1.2;
}

.vcard__contact {
  padding: 24px;
}

.vcard__section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E9ECEF;
}

.vcard__contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vcard__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  color: #212529;
  background: #F8F9FA;
  border-radius: 12px;
  transition: all 300ms ease;
}
.vcard__contact-item:hover {
  background: #E9ECEF;
  transform: translateX(4px);
}
.vcard__contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.vcard__contact-item .info {
  flex: 1;
  min-width: 0;
}
.vcard__contact-item .info .label {
  font-size: 0.875rem;
  color: #6C757D;
  margin-bottom: 2px;
}
.vcard__contact-item .info .value {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
}
.vcard__contact-item--phone .icon {
  background: rgba(28, 63, 148, 0.1);
  color: #1C3F94;
}
.vcard__contact-item--whatsapp .icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.vcard__contact-item--email .icon {
  background: rgba(196, 30, 58, 0.1);
  color: #C41E3A;
}
.vcard__contact-item--location .icon {
  background: rgba(220, 53, 69, 0.1);
  color: #DC3545;
}
.vcard__contact-item--website .icon {
  background: rgba(212, 160, 23, 0.1);
  color: #D4A017;
}

.vcard__cta {
  padding: 8px 24px 24px;
}

.vcard__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 300ms ease;
}
.vcard__cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.3);
}
.vcard__cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.vcard__cta-button {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
}
.vcard__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.vcard__cta-button:active {
  transform: translateY(0);
}
.vcard__cta-button {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.125rem;
}
.vcard__cta-button i {
  font-size: 1.25rem;
}

.vcard__features {
  padding: 24px;
  background: #F8F9FA;
}

.vcard__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.vcard__feature {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.vcard__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.vcard__feature {
  padding: 16px;
  text-align: center;
}
.vcard__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #D4A017;
  color: #FFFFFF;
  border-radius: 50%;
  margin: 0 auto 8px;
  font-size: 1.25rem;
}
.vcard__feature-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 4px;
}
.vcard__feature-text {
  font-size: 0.75rem;
  color: #6C757D;
}

.vcard__brands-section {
  padding: 24px;
}

.vcard__brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .vcard__brands-grid {
    grid-template-columns: 1fr;
  }
}

.vcard__brand-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 16px;
  text-align: center;
}
.vcard__brand-card--mazda {
  border-top: 3px solid #C41E3A;
}
.vcard__brand-card--mazda .vcard__brand-icon {
  color: #C41E3A;
}
.vcard__brand-card--ford {
  border-top: 3px solid #1C3F94;
}
.vcard__brand-card--ford .vcard__brand-icon {
  color: #1C3F94;
}
.vcard__brand-card--chevrolet {
  border-top: 3px solid #D4A017;
}
.vcard__brand-card--chevrolet .vcard__brand-icon {
  color: #D4A017;
}

.vcard__brand-icon {
  font-size: 1.875rem;
  margin-bottom: 8px;
}
.vcard__brand-icon img {
  height: 40px;
  width: auto;
  margin: 0 auto;
}

.vcard__brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.vcard__brand-models {
  font-size: 0.75rem;
  color: #6C757D;
  line-height: 1.75;
}

.vcard__footer {
  padding: 24px;
  text-align: center;
  background: #212529;
  color: #CED4DA;
}

.vcard__copyright {
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.vcard__copyright a {
  color: #D4A017;
}
.vcard__copyright a:hover {
  text-decoration: underline;
}

.vcard__powerby {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #6C757D;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(108, 117, 125, 0.2);
  letter-spacing: 0.5px;
}
.vcard__powerby span {
  text-transform: lowercase;
  font-weight: 300;
  opacity: 0.7;
}
.vcard__powerby a {
  color: #CED4DA;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 150ms ease;
}
.vcard__powerby a strong {
  font-weight: 700;
  color: #D4A017;
}
.vcard__powerby a:hover {
  color: #FFFFFF;
}
.vcard__powerby a:hover strong {
  color: #F4D03F;
}

.vcard__powered {
  font-size: 0.75rem;
  color: #ADB5BD;
}
.vcard__powered a {
  color: #CED4DA;
}
.vcard__powered a:hover {
  color: #FFFFFF;
}

.vcard__save-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
}
@media (min-width: 768px) {
  .vcard__save-contact {
    position: absolute;
  }
}

.vcard__save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 300ms ease;
}
.vcard__save-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.3);
}
.vcard__save-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.vcard__save-button {
  background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
  color: #FFFFFF;
}
.vcard__save-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.vcard__save-button:active {
  transform: translateY(0);
}
.vcard__save-button {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.vcard__save-button i {
  font-size: 1.25rem;
}
.vcard__save-button:hover {
  transform: scale(1.1);
}

.vcard__header,
.vcard__profile,
.vcard__qr,
.vcard__contact,
.vcard__features,
.vcard__brands-section,
.vcard__footer {
  animation: slideUp 300ms ease ease-out;
}

.vcard__contact-item {
  animation: fadeIn 300ms ease ease-out;
}
.vcard__contact-item:nth-child(1) {
  animation-delay: 0.1s;
}
.vcard__contact-item:nth-child(2) {
  animation-delay: 0.2s;
}
.vcard__contact-item:nth-child(3) {
  animation-delay: 0.3s;
}
.vcard__contact-item:nth-child(4) {
  animation-delay: 0.4s;
}
.vcard__contact-item:nth-child(5) {
  animation-delay: 0.5s;
}
.vcard__contact-item:nth-child(6) {
  animation-delay: 0.6s;
}

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