/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');


/* ============================================
   COMPONENTS
   ============================================ */
@import 'components/header.css';
@import 'components/btn-hover.css';
@import 'components/hero.css';
@import 'components/brand-slider.css';
@import 'components/about.css';
@import 'components/cases.css';
@import 'components/services.css';
@import 'components/clientes.css';
@import 'components/cta.css';
@import 'components/cards-ui.css';
@import 'components/footer.css';
@import 'components/case-hero.css';
@import 'components/case-image-full.css';
@import 'components/case-content.css';
@import 'components/case-cta.css';
@import 'components/page-transition.css';
@import 'components/whatsapp-float.css';
@import 'components/contact-form.css';


/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Colors */
  --color-bg:       #000000;
  --color-white:    #ffffff;
  --color-green:    #22b573;
  --color-dark:     #171717;
  --color-gray-bg:  #0e0e0e;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Spacing */
  --container-max: 1440px;
  --section-px:    40px;

  /* Header */
  --header-pad: 20px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ============================================
   GLOBAL UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.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;
}


/* ============================================
   TEMP: Test sections
   ============================================ */
.test-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.02em;
}


/* ============================================
   Sections will be added below
   ============================================ */
