/*
Theme Name: Datafiber SA
Theme URI: https://datafiberinfo.org
Author: Datafiber SA
Description: Tema personalizado para Datafiber SA.
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Sora:wght@400;600;700&display=swap");

:root {
  --df-orange: #F28C28;
  --df-black: #111111;
  --df-gray: #F5F5F5;
  --df-cream: #fff6ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1A1A1A;
  background: #ffffff;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  letter-spacing: -0.01em;
}

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

.df-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.df-header {
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.df-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.df-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.df-brand img,
.custom-logo {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}

.df-brand .site-title {
  font-weight: 700;
  font-size: 20px;
}

.df-menu-list {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.df-menu-list li {
  margin: 0;
  padding: 0;
}

.df-menu a {
  background: var(--df-orange);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.df-menu a:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.df-hero {
  background: linear-gradient(135deg, #ffffff 0%, var(--df-cream) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.df-hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.df-hero p {
  font-size: 18px;
  max-width: 640px;
}

.df-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242,140,40,0.18), rgba(242,140,40,0));
  border-radius: 50%;
}

.df-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,0,0,0.08), rgba(0,0,0,0));
  border-radius: 50%;
}

.df-hero .df-container {
  position: relative;
  z-index: 1;
  animation: df-fade-up 0.6s ease-out both;
}

.df-badge {
  display: inline-block;
  background: var(--df-black);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 10px;
}

.df-button {
  display: inline-block;
  background: var(--df-orange);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.df-section-light {
  background: var(--df-gray);
  padding: 64px 0;
}

.df-section {
  padding: 64px 0;
}

.df-section-dark {
  background: var(--df-black);
  color: #ffffff;
  padding: 64px 0;
}

.df-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.df-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.df-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--df-orange);
}

.df-section h2,
.df-section-light h2,
.df-section-dark h2 {
  display: inline-block;
  background: var(--df-black);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 20px;
  margin-bottom: 16px;
}

.df-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.df-button:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

@keyframes df-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.df-footer {
  background: #fafafa;
  border-top: 1px solid #eeeeee;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

.df-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 999;
}

.df-whatsapp-float:hover {
  filter: brightness(0.95);
}

.df-page {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .df-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .df-hero h1 {
    font-size: 32px;
  }
}
