/* Variables y reset general */
:root {
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-health: #f0f4f9;
  --text-main: #1f1f1f;
  --text-sub: #5f6368;
  --google-blue: #1a73e8;
  --border-radius-lg: 28px;
  --border-radius-md: 20px;
  --border-radius-sm: 12px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Disposición general */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto 96px auto;
  padding: 0 24px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

/* Botones */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #dadce0;
  background-color: #ffffff;
  color: var(--text-main);
  cursor: pointer;
}

.btn-pill:hover {
  background-color: #f1f3f4;
}

/* Títulos de sección */
.main-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 48px;
}

.sub-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

/* Tarjetas de soporte */
.support-card {
  background-color: var(--bg-health);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.support-icon-blue {
  color: var(--google-blue);
  font-size: 28px;
  margin-bottom: 12px;
}

.support-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Tarjetas de ayuda por dispositivo */
.help-device-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 220px;
  transition: transform 0.2s;
}

.help-device-card:hover {
  transform: translateY(-4px);
}

.help-device-img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.help-device-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

.help-icon-blue {
  width: 48px;
  height: 48px;
  color: var(--google-blue);
  margin-bottom: 12px;
}

/* Tarjetas con bordes redondeados */
.card-rounded {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-img-wrapper {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  object-fit: cover;
}