@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background: #F5F5F5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

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: #2B3E6B;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #1a2847;
}

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}
.main-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(43, 62, 107, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.main-wrapper::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.header {
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .header {
    padding: 2rem 0;
  }
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.logo-container img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.header-title {
  font-size: 1.5rem;
  color: #2B3E6B;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .header-title {
    font-size: 1.875rem;
  }
}

.header-subtitle {
  font-size: 1rem;
  color: #666666;
  font-weight: 400;
}
@media (min-width: 768px) {
  .header-subtitle {
    font-size: 1.125rem;
  }
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .main-content {
    padding: 2rem 0;
  }
}

.footer {
  padding: 1.5rem 0 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}
.footer p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0;
}
.footer a {
  color: #2B3E6B;
  font-weight: 500;
}
.footer a:hover {
  color: #C5A572;
}

.powered-by {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(102, 102, 102, 0.1);
}
.powered-by p {
  font-size: 0.75rem;
  color: rgba(102, 102, 102, 0.5);
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.powered-by a {
  color: rgba(102, 102, 102, 0.6);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.powered-by a:hover {
  color: #666666;
  text-decoration: none;
}

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

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

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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.card-container {
  perspective: 1000px;
  width: 100%;
  max-width: 360px;
  height: 240px;
  margin: 0 auto 2rem;
}
@media (min-width: 576px) {
  .card-container {
    max-width: 420px;
    height: 280px;
  }
}

.card-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}
.card-flip.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(43, 62, 107, 0.15);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card-face:hover {
  box-shadow: 0 15px 40px rgba(43, 62, 107, 0.25);
}

.card-front {
  background: linear-gradient(135deg, #2B3E6B 0%, #1a2847 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}
@media (min-width: 576px) {
  .card-front {
    padding: 2rem;
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.company-logo {
  max-width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .company-logo {
    max-width: 120px;
  }
}

.brands-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 0.5rem;
  align-items: center;
  justify-items: end;
}
.brands-strip img {
  height: 20px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease-in-out;
}
.brands-strip img:hover {
  opacity: 1;
}
@media (min-width: 576px) {
  .brands-strip img {
    height: 24px;
  }
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  min-height: 0;
}

.person-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .person-name {
    font-size: 1.5rem;
  }
}

.person-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
@media (min-width: 576px) {
  .person-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.company-name {
  font-size: 1rem;
  color: #C5A572;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .company-name {
    font-size: 1.125rem;
  }
}

.company-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
@media (min-width: 576px) {
  .company-tagline {
    font-size: 0.875rem;
  }
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.contact-quick {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}
.contact-quick a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .contact-quick a {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}
.contact-quick a:hover {
  background: #C5A572;
  transform: translateY(-2px);
}

.flip-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .flip-indicator {
    font-size: 0.875rem;
  }
}
.flip-indicator i {
  font-size: 0.75rem;
  animation: pulse 2s infinite;
}
@media (min-width: 576px) {
  .flip-indicator i {
    font-size: 0.875rem;
  }
}

.card-back {
  background: #FFFFFF;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media (min-width: 576px) {
  .card-back {
    padding: 1.5rem 2rem;
  }
}

.card-back-header {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F5F5F5;
}

.card-back-title {
  font-size: 1.125rem;
  color: #2B3E6B;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .card-back-title {
    font-size: 1.25rem;
  }
}

.card-back-subtitle {
  font-size: 0.75rem;
  color: #666666;
}
@media (min-width: 576px) {
  .card-back-subtitle {
    font-size: 0.875rem;
  }
}

.qr-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 0.25rem 0;
  min-height: 0;
}
.qr-section .qr-code {
  width: 90px;
  height: 90px;
  padding: 0.25rem;
  background: #FFFFFF;
  border: 2px solid #F5F5F5;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .qr-section .qr-code {
    width: 100px;
    height: 100px;
  }
}
.qr-section .qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding-bottom: 0.25rem;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2B3E6B 0%, #1a2847 100%);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
}
.social-links a:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.social-links a.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.social-links a.instagram {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}
.social-links a.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.contact-section {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 1.5rem;
  color: #2B3E6B;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border: 2px solid #F5F5F5;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #2B3E6B;
}
.contact-button:hover .contact-icon {
  transform: scale(1.1);
}
.contact-button:active {
  transform: translateY(-2px);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2B3E6B 0%, #1a2847 100%);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 3rem;
  }
}

.contact-label {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1rem;
  color: #333333;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 576px) {
  .contact-value {
    font-size: 1.125rem;
  }
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .action-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn {
  font-size: 1rem;
  padding: 1rem 2rem;
  min-width: 200px;
}
.btn i {
  margin-right: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary {
  background: linear-gradient(135deg, #2B3E6B 0%, #1a2847 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);
}
.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
}
.btn-outline:hover {
  transform: translateY(-2px);
}
.btn-outline:active {
  transform: translateY(0);
}
.btn-outline {
  background: transparent;
  border: 2px solid #2B3E6B;
  color: #2B3E6B;
}
.btn-outline:hover {
  background: #2B3E6B;
  color: #FFFFFF;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 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);
}
.btn-whatsapp:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-download {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A572 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);
}
.btn-download:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(43, 62, 107, 0.1) 0%, rgba(197, 165, 114, 0.1) 100%);
  border-radius: 50%;
  color: #2B3E6B;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-title {
  font-size: 1rem;
  color: #333333;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.4;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #F5F5F5;
  border-top-color: #2B3E6B;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 576px) {
  .card-container {
    max-width: 95%;
  }
  .contact-section {
    padding: 0 0.5rem;
  }
  .action-buttons .btn {
    min-width: 100%;
  }
}
.animate-in {
  animation: slideUp 0.6s ease-out;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(43, 62, 107, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

:focus-visible {
  outline: 2px solid #2B3E6B;
  outline-offset: 2px;
}

@media print {
  .main-wrapper {
    background: #FFFFFF;
  }
  .card-flip {
    transform: none !important;
  }
  .card-back {
    display: none;
  }
  .action-buttons,
  .flip-indicator {
    display: none;
  }
}

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