
:root {
  --primary: #0056b3;
  --primary-dark: #003d82;
  --secondary: #e63946;
  --accent: #ffc107;
  --dark: #212529;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background-color: #f5f7fa;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
#cabecera {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.policy-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 61, 130, 0.9)), 
              url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}

.policy-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Main Content */
.policy-content {
  padding: 0 0 60px;
}

.policy-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
}

.policy-section h2 {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.policy-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.policy-section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.policy-section ul {
  margin: 25px 0 35px;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
}

.policy-section strong {
  color: var(--primary-dark);
}

/* Download Button */
.btn-download {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-download:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.btn-download::before {
  content: '📄';
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Signature */
.policy-signature {
  text-align: right;
  margin-top: 40px;
  font-style: italic;
  color: var(--gray);
}

/* Footer */
#footer {
  background-color: var(--dark);
  color: white;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-hero h1 {
    font-size: 2.2rem;
  }
  
  .policy-hero p {
    font-size: 1.1rem;
  }
  
  .policy-section {
    padding: 30px 20px;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
}

.container-blanco {
        width: 100vw;         /* ocupa todo el ancho del viewport */
        height: 100px;        /* puedes cambiar esta altura a tu gusto */
        background-color: rgb(255, 255, 255);
      }
