/* Variables CSS para Políticas */
:root {
  --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --secondary-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --accent-gradient: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  --dark-gradient: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Banner Profesional */
.hero-banner {
  min-height: 100vh;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-content {
  text-align: left;
  color: white;
}

.banner-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.banner-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.banner-buttons .btn {
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  border: 2px solid transparent;
}

.banner-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.3);
}

.banner-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.banner-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.banner-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Banner Graphic */
.banner-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.legal-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.icon-item {
  text-align: center;
  color: white;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.icon-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-strong);
}

.icon-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.icon-item span {
  font-weight: 600;
  font-size: 1rem;
}

/* Políticas Section */
.policies-section {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.policy-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.policy-icon {
  font-size: 3rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
}

.policy-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.policy-features {
  list-style: none;
  margin-bottom: 2rem;
}

.policy-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.95rem;
}

.policy-features i {
  color: #10b981;
  font-size: 0.8rem;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.1);
  width: 100%;
  justify-content: center;
}

.policy-link:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: translateX(5px);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: var(--transition);
}

.contact-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.contact-item i {
  color: #2563eb;
  font-size: 1.2rem;
  width: 20px;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e2e8f0;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }

  .banner-buttons {
    justify-content: center;
  }

  .legal-icons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 2rem;
  }

  .banner-buttons {
    flex-direction: column;
  }

  .banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .policy-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Active Navigation */
.nav-menu a.active {
  color: #2563eb;
  font-weight: 600;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Policy Content Styles */
.policy-content {
  padding: 100px 0;
  background: #f8fafc;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-main {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e2e8f0;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section h2 i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-right: 10px;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #374151;
  margin: 1.5rem 0 1rem 0;
}

.policy-section p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: #1f2937;
  font-weight: 600;
}

/* Sidebar Styles */
.content-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget h3 i {
  color: #2563eb;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  color: #4b5563;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  transition: var(--transition);
  border-radius: 6px;
  padding-left: 0.5rem;
}

.sidebar-menu a:hover {
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.1);
  transform: translateX(5px);
}

.sidebar-widget p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.sidebar-widget .btn {
  width: 100%;
  margin-bottom: 0.5rem;
  justify-content: center;
}

/* Responsive Design for Policy Content */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .content-main {
    padding: 2rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .sidebar-widget {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .content-main {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .sidebar-widget {
    padding: 1rem;
  }
}

/* Cookie Table Styles */
.cookie-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
  background: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-table td {
  color: #4b5563;
  font-size: 0.9rem;
}

.cookie-table tr:hover {
  background: #f8fafc;
}

/* Cookie Control Styles */
.cookie-control {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.cookie-control .btn {
  width: 100%;
  justify-content: center;
}

/* Cookie Quick Settings */
.cookie-quick-settings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}

.cookie-option:hover {
  background: rgba(37, 99, 235, 0.1);
}

.cookie-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #667eea;
}

.cookie-option span {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
}

.cookie-option input[type="checkbox"]:disabled+span {
  color: #9ca3af;
  font-style: italic;
}

/* Responsive Table */
@media (max-width: 768px) {
  .cookie-table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }

  .cookie-control {
    gap: 0.75rem;
  }
}

/* Certification List Styles */
.certification-list {
  list-style: none;
  padding: 0;
}

.certification-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.certification-list i {
  color: #10b981;
  font-size: 0.8rem;
}
