/* =========================
RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
  
  html {
  scroll-behavior: smooth;
  }
  
  body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  }
  
  /* =========================
  HEADER
  ========================= */
  
  header {
  width: 100%;
  height: 80px;
  
  ```
  background: #fff;
  
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  
  align-items: center;
  
  padding: 0 50px;
  
  position: relative;
  z-index: 100;
  ```
  
  }
  
  /* =========================
  LOGO
  ========================= */
  
  .logo {
  justify-self: start;
  
  ```
  display: block;
  
  flex-shrink: 0;
  ```
  
  }
  
  .logo img {
  display: block;
  
  ```
  width: 150px;
  
  height: auto;
  ```
  
  }
  
  /* =========================
  MENÚ
  ========================= */
  
  nav {
  justify-self: center;
  }
  
  nav ul {
  display: flex;
  
  ```
  align-items: center;
  
  gap: 35px;
  
  list-style: none;
  ```
  
  }
  
  nav a {
  display: block;
  
  ```
  text-decoration: none;
  
  color: #111;
  
  font-size: 15px;
  
  font-weight: 600;
  
  white-space: nowrap;
  
  transition: color 0.2s ease;
  ```
  
  }
  
  nav a:hover {
  color: #e30613;
  }
  
  /* =========================
  WHATSAPP
  ========================= */
  
  .whatsapp {
  justify-self: end;
  
  ```
  width: 42px;
  height: 42px;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  flex-shrink: 0;
  
  background: #25D366;
  
  color: #fff;
  
  border-radius: 50%;
  
  text-decoration: none;
  
  transition:
      background 0.2s ease,
      transform 0.2s ease;
  ```
  
  }
  
  .whatsapp i {
  display: block;
  
  ```
  font-size: 24px;
  
  line-height: 1;
  
  color: #fff;
  ```
  
  }
  
  .whatsapp:hover {
  background: #1ebe5d;
  
  ```
  transform: translateY(-2px);
  ```
  
  }
  
  /* =========================
  MENÚ HAMBURGUESA
  ========================= */
  
  .menu-toggle {
  display: none;
  
  ```
  width: 42px;
  height: 42px;
  
  padding: 0;
  
  background: transparent;
  
  border: none;
  
  cursor: pointer;
  
  flex-direction: column;
  
  align-items: center;
  
  justify-content: center;
  
  gap: 5px;
  ```
  
  }
  
  .menu-toggle span {
  display: block;
  
  ```
  width: 24px;
  height: 2px;
  
  background: #111;
  
  transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  ```
  
  }
  
  .menu-toggle.active span:nth-child(1) {
  transform:
  translateY(7px)
  rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
  opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
  transform:
  translateY(-7px)
  rotate(-45deg);
  }
  
  /* =========================
  HERO
  ========================= */
  
  .hero {
  position: relative;
  
  ```
  width: 100%;
  
  height: calc(100vh - 80px);
  
  background-image: url("hero.jpg");
  
  background-size: cover;
  
  background-position: center;
  
  display: flex;
  
  align-items: center;
  ```
  
  }
  
  .hero::before {
  content: "";
  
  ```
  position: absolute;
  
  inset: 0;
  
  background: rgba(0, 0, 0, 0.40);
  ```
  
  }
  
  .hero-content {
  position: relative;
  
  ```
  z-index: 1;
  
  max-width: 700px;
  
  margin-left: 8%;
  
  color: #fff;
  ```
  
  }
  
  .hero-content .subtitulo {
  font-size: 18px;
  
  ```
  font-weight: 500;
  
  margin-bottom: 15px;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  ```
  
  }
  
  .hero-content h1 {
  font-size: clamp(42px, 6vw, 78px);
  
  ```
  line-height: 1.05;
  
  font-weight: 700;
  
  margin-bottom: 25px;
  ```
  
  }
  
  .hero-content h1 span {
  color: #e30613;
  }
  
  .hero-content p {
  max-width: 560px;
  
  ```
  font-size: 18px;
  
  line-height: 1.6;
  
  margin-bottom: 35px;
  ```
  
  }
  
  /* =========================
  BOTÓN
  ========================= */
  
  .boton {
  display: inline-block;
  
  ```
  padding: 15px 30px;
  
  background: #e30613;
  
  color: #fff;
  
  text-decoration: none;
  
  font-size: 14px;
  
  font-weight: 600;
  
  transition:
      background 0.2s ease,
      transform 0.2s ease;
  ```
  
  }
  
  .boton:hover {
  background: #b8050f;
  
  ```
  transform: translateY(-2px);
  ```
  
  }
  
  /* =========================
  EMPRESA
  ========================= */
  
  .empresa {
  padding: 120px 8%;
  
  ```
  background: #fff;
  ```
  
  }
  
  .empresa-contenido {
  max-width: 1200px;
  
  ```
  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 100px;
  
  align-items: center;
  ```
  
  }
  
  .empresa-titulo small {
  display: block;
  
  ```
  margin-bottom: 15px;
  
  color: #e30613;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  ```
  
  }
  
  .empresa-titulo h2 {
  font-size: clamp(36px, 4vw, 58px);
  
  ```
  line-height: 1.1;
  
  font-weight: 700;
  ```
  
  }
  
  .empresa-texto p {
  font-size: 17px;
  
  ```
  line-height: 1.8;
  
  color: #555;
  
  margin-bottom: 20px;
  ```
  
  }
  
  .empresa-linea {
  width: 60px;
  
  ```
  height: 4px;
  
  background: #e30613;
  
  margin-bottom: 30px;
  ```
  
  }
  
  /* =========================
  POR QUÉ TTAC
  ========================= */
  
  .porque-ttac {
  padding: 110px 8%;
  
  ```
  background: #f5f5f5;
  ```
  
  }
  
  .porque-contenido {
  max-width: 1200px;
  
  ```
  margin: 0 auto;
  ```
  
  }
  
  .porque-header {
  max-width: 750px;
  
  ```
  margin-bottom: 65px;
  ```
  
  }
  
  .porque-header small {
  display: block;
  
  ```
  margin-bottom: 15px;
  
  color: #e30613;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  ```
  
  }
  
  .porque-header h2 {
  font-size: clamp(36px, 4vw, 58px);
  
  ```
  line-height: 1.1;
  
  margin-bottom: 25px;
  ```
  
  }
  
  .porque-header p {
  max-width: 650px;
  
  ```
  color: #666;
  
  font-size: 17px;
  
  line-height: 1.8;
  ```
  
  }
  
  /* =========================
  GRID POR QUÉ TTAC
  ========================= */
  
  .porque-grid {
  display: grid;
  
  ```
  grid-template-columns: repeat(3, 1fr);
  
  gap: 0;
  
  border-top: 1px solid #d8d8d8;
  ```
  
  }
  
  .porque-item {
  padding: 35px 40px 20px 0;
  
  ```
  border-right: 1px solid #d8d8d8;
  
  text-align: center;
  ```
  
  }
  
  .porque-item:not(:first-child) {
  padding-left: 40px;
  }
  
  .porque-item:last-child {
  border-right: none;
  }
  
  /* =========================
  ICONOS POR QUÉ TTAC
  ========================= */
  
  .porque-icono {
  width: 70px;
  height: 70px;
  
  ```
  margin: 0 auto 25px;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  color: #e30613;
  
  font-size: 34px;
  
  line-height: 1;
  ```
  
  }
  
  .porque-icono i {
  display: block;
  }
  
  /* =========================
  CONTENIDO POR QUÉ TTAC
  ========================= */
  
  .porque-item h3 {
  margin-bottom: 15px;
  
  ```
  font-size: 23px;
  
  line-height: 1.2;
  ```
  
  }
  
  .porque-item p {
  max-width: 320px;
  
  ```
  margin: 0 auto;
  
  color: #666;
  
  font-size: 15px;
  
  line-height: 1.7;
  ```
  
  }
  
  /* =========================
  CERCANÍA
  ========================= */
  
  .cercania {
  padding: 110px 8%;
  
  ```
  background: #111;
  
  color: #fff;
  ```
  
  }
  
  .cercania-contenido {
  max-width: 1200px;
  
  ```
  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1.2fr 0.8fr;
  
  gap: 100px;
  
  align-items: center;
  ```
  
  }
  
  .cercania-texto small {
  display: block;
  
  ```
  margin-bottom: 15px;
  
  color: #e30613;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  ```
  
  }
  
  .cercania-texto h2 {
  max-width: 650px;
  
  ```
  font-size: clamp(38px, 5vw, 65px);
  
  line-height: 1.05;
  
  margin-bottom: 30px;
  ```
  
  }
  
  .cercania-texto p {
  max-width: 650px;
  
  ```
  color: rgba(255, 255, 255, 0.7);
  
  font-size: 16px;
  
  line-height: 1.8;
  
  margin-bottom: 18px;
  ```
  
  }
  
  /* =========================
  DATOS CERCANÍA
  ========================= */
  
  .cercania-datos {
  display: flex;
  
  ```
  flex-direction: column;
  
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  ```
  
  }
  
  .zona {
  display: flex;
  
  ```
  align-items: center;
  
  gap: 25px;
  
  padding: 25px 0;
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  ```
  
  }
  
  /* =========================
  ICONOS CERCANÍA
  ========================= */
  
  .zona-icono {
  width: 52px;
  height: 52px;
  
  ```
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  flex-shrink: 0;
  
  color: #e30613;
  
  font-size: 29px;
  
  line-height: 1;
  ```
  
  }
  
  .zona-icono i {
  display: block;
  }
  
  .zona strong {
  font-size: 25px;
  
  ```
  font-weight: 600;
  ```
  
  }
  
  /* =========================
  CONTACTO
  ========================= */
  
  .contacto {
  padding: 110px 8%;
  
  ```
  background: #e30613;
  
  color: #fff;
  ```
  
  }
  
  .contacto-contenido {
  max-width: 1200px;
  
  ```
  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 80px;
  
  align-items: center;
  ```
  
  }
  
  .contacto-texto small {
  display: block;
  
  ```
  margin-bottom: 15px;
  
  color: #fff;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  ```
  
  }
  
  .contacto-texto h2 {
  font-size: clamp(50px, 6vw, 80px);
  
  ```
  line-height: 1;
  
  margin-bottom: 25px;
  
  color: #fff;
  ```
  
  }
  
  .contacto-texto > p {
  max-width: 500px;
  
  ```
  color: rgba(255, 255, 255, 0.85);
  
  font-size: 17px;
  
  line-height: 1.7;
  
  margin-bottom: 35px;
  ```
  
  }
  
  /* =========================
  DATOS CONTACTO
  ========================= */
  
  .contacto-datos {
  display: flex;
  
  ```
  flex-direction: column;
  
  gap: 25px;
  ```
  
  }
  
  .contacto-info {
  display: flex;
  
  ```
  flex-direction: column;
  
  gap: 8px;
  
  padding-top: 20px;
  
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  ```
  
  }
  
  .contacto-info > span {
  color: rgba(255, 255, 255, 0.7);
  
  ```
  font-size: 13px;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  ```
  
  }
  
  .contacto-info strong {
  font-size: 16px;
  
  ```
  font-weight: 500;
  
  color: #fff;
  
  line-height: 1.6;
  ```
  
  }
  
  /* =========================
  TELÉFONO
  ========================= */
  
  .contacto-telefono {
  display: inline-block;
  
  ```
  color: #fff;
  
  font-size: 24px;
  
  font-weight: 600;
  
  text-decoration: none;
  
  transition: opacity 0.2s ease;
  ```
  
  }
  
  .contacto-telefono:hover {
  opacity: 0.75;
  }
  
  /* =========================
  HORARIOS
  ========================= */
  
  .horarios {
  display: flex;
  
  ```
  flex-direction: column;
  
  gap: 9px;
  
  margin-top: 8px;
  
  width: 100%;
  ```
  
  }
  
  .horario-dia {
  display: flex;
  
  ```
  justify-content: space-between;
  
  align-items: baseline;
  
  gap: 20px;
  
  font-size: 14px;
  
  line-height: 1.4;
 
  
  }
  
  .horario-dia strong {
  min-width: 85px;
  
 
  color: #fff;
  
  font-weight: 600;
  
  
  }
  
  .horario-dia span {
  color: rgba(255, 255, 255, 0.85);
  
 
  font-size: 13px;
  
  text-transform: none;
  
  letter-spacing: 0;
 
  
  }
  
  .horario-dia.cerrado span {
  color: rgba(255, 255, 255, 0.55);
  }
  
  /* =========================
  GOOGLE MAPS
  ========================= */
  
  .contacto-mapa {
  width: 100%;
  

  height: 450px;
  
  overflow: hidden;
  
  border-radius: 6px;
  
  border: 3px solid rgba(255, 255, 255, 0.9);
  
  box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.18);
 
  
  }
  
  .contacto-mapa iframe {
  display: block;
  

  width: 100%;
  
  height: 100%;
  
  border: 0;

  
  }
  
  /* =========================
  FOOTER
  ========================= */
  
  footer {
  background: #111;
  

  color: #777;
  
  padding: 18px 8%;
 
  
  }
  
  .footer-contenido {
  max-width: 1200px;
  
 
  margin: 0 auto;
  
  display: flex;
  
  align-items: center;
  
  justify-content: space-between;

  
  }
  
  .footer-logo img {
  display: block;
  
  ```
  width: 80px;
  
  height: auto;
  ```
  
  }
  
  .footer-copy {
  font-size: 11px;
  
  ```
  color: #777;
  ```
  
  }
  
  /* =========================
  TABLET
  ========================= */
  
  @media (max-width: 1000px) {
  
  ```
  header {
      padding: 0 30px;
  }
  
  .empresa-contenido {
      gap: 60px;
  }
  
  .cercania-contenido {
      gap: 60px;
  }
  
  .contacto-contenido {
      gap: 50px;
  }
  ```
  
  }
  
  /* =========================
  MÓVIL
  ========================= */
  
  @media (max-width: 768px) {
  
  ```
  /* Header */
  
  header {
      height: 75px;
  
      padding: 15px 20px;
  
      display: flex;
  
      justify-content: space-between;
  
      align-items: center;
  }
  
  
  /* Logo */
  
  .logo img {
      width: 130px;
  }
  
  
  /* WhatsApp */
  
  .whatsapp {
      width: 40px;
  
      height: 40px;
  
      margin-left: auto;
  
      margin-right: 10px;
  }
  
  .whatsapp i {
      font-size: 22px;
  }
  
  
  /* Hamburguesa */
  
  .menu-toggle {
      display: flex;
  
      flex-shrink: 0;
  }
  
  
  /* Menú */
  
  nav {
      position: absolute;
  
      top: 75px;
  
      left: 0;
  
      width: 100%;
  
      background: #fff;
  
      padding: 0 20px;
  
      max-height: 0;
  
      overflow: hidden;
  
      opacity: 0;
  
      transition:
          max-height 0.3s ease,
          opacity 0.3s ease;
  
      box-shadow:
          0 8px 15px rgba(0, 0, 0, 0.08);
  }
  
  nav.active {
      max-height: 350px;
  
      opacity: 1;
  }
  
  nav ul {
      width: 100%;
  
      display: flex;
  
      flex-direction: column;
  
      align-items: stretch;
  
      gap: 0;
  }
  
  nav li {
      width: 100%;
  
      border-bottom: 1px solid #eee;
  }
  
  nav li:last-child {
      border-bottom: none;
  }
  
  nav a {
      display: block;
  
      width: 100%;
  
      padding: 18px 5px;
  
      font-size: 14px;
  
      text-align: left;
  }
  
  
  /* Hero */
  
  .hero {
      height: calc(100vh - 75px);
  
      background-position: center;
  }
  
  .hero-content {
      width: auto;
  
      max-width: none;
  
      margin-left: 25px;
  
      margin-right: 25px;
  }
  
  .hero-content .subtitulo {
      font-size: 14px;
  }
  
  .hero-content h1 {
      font-size: clamp(40px, 12vw, 60px);
  }
  
  .hero-content p {
      font-size: 16px;
  }
  
  
  /* Empresa */
  
  .empresa {
      padding: 80px 25px;
  }
  
  .empresa-contenido {
      grid-template-columns: 1fr;
  
      gap: 40px;
  }
  
  
  /* Por qué TTAC */
  
  .porque-ttac {
      padding: 80px 25px;
  }
  
  .porque-header {
      margin-bottom: 50px;
  }
  
  .porque-grid {
      grid-template-columns: 1fr;
  }
  
  .porque-item,
  .porque-item:not(:first-child) {
      padding: 30px 0;
  
      border-right: none;
  
      border-bottom: 1px solid #d8d8d8;
  }
  
  .porque-item:first-child {
      padding-top: 30px;
  }
  
  .porque-item:last-child {
      border-bottom: none;
  }
  
  .porque-icono {
      width: 68px;
  
      height: 68px;
  
      margin-bottom: 22px;
  
      font-size: 32px;
  }
  
  
  /* Cercanía */
  
  .cercania {
      padding: 80px 25px;
  }
  
  .cercania-contenido {
      grid-template-columns: 1fr;
  
      gap: 50px;
  }
  
  .zona strong {
      font-size: 22px;
  }
  
  .zona-icono {
      width: 48px;
  
      height: 48px;
  
      font-size: 26px;
  }
  
  
  /* Contacto */
  
  .contacto {
      padding: 80px 25px;
  }
  
  .contacto-contenido {
      grid-template-columns: 1fr;
  
      gap: 50px;
  }
  
  .contacto-telefono {
      font-size: 24px;
  }
  
  .horario-dia {
      justify-content: flex-start;
  
      gap: 15px;
  }
  
  .horario-dia strong {
      min-width: 80px;
  }
  
  .horario-dia span {
      font-size: 12px;
  }
  
  
  /* Mapa */
  
  .contacto-mapa {
      height: 350px;
  
      margin-top: 10px;
  }
  
  
  /* Footer */
  
  footer {
      padding: 15px 20px;
  }
  
  .footer-contenido {
      flex-direction: column;
  
      gap: 10px;
  
      text-align: center;
  }
  
  .footer-logo img {
      width: 65px;
  }

  }
  