
:root {
  --primary-dark: #121212;
  --secondary-dark: #1E1E1E;
  --accent-color: #FF6B35;
  --secondary-accent: #3A86FF;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --card-shadow: rgba(0, 0, 0, 0.3);
  --success-color: #2ECC71;
  --warning-color: #F1C40F;
  --border-color: #333333;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

a {
  color: var(--secondary-accent);
  transition: all 0.3s ease;
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--accent-color);
  text-decoration: none;
}

label {
  color: var(--text-primary)
}

.btn {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.08);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-primary);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #ff8c5a;
  border-color: #ff8c5a;
  color: var(--text-primary);
}

.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--accent-color);
  color: var(--text-primary);
}

.btn-secondary {
  background-color: var(--secondary-accent);
  border-color: var(--secondary-accent);
  color: var(--text-primary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #5a9cff;
  border-color: #5a9cff;
  color: var(--text-primary);
}


.card {
  background-color: var(--secondary-dark);
  border: none;
  border-radius: 15px;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.12), 
    0 1px 3px rgba(0,0,0,0.24),
    0 1px 2px rgba(0,0,0,0.12) inset;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  overflow: hidden;
  margin-bottom: 30px;
}

.card:hover {
  box-shadow: 
    0 14px 28px rgba(0,0,0,0.25), 
    0 10px 10px rgba(0,0,0,0.22),
    0 1px 3px rgba(0,0,0,0.12) inset;
  transform: translateY(-5px);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--text-primary);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar-contact {
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.navbar-contact i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}


.hero {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}

.hero-bullets li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
}


.section {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--accent-color);
  font-size: 2rem;
}


.problem-card {
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--secondary-dark);
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.1), 
    0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateX(5px);
  box-shadow: 
    0 7px 14px rgba(0,0,0,0.1), 
    0 3px 6px rgba(0,0,0,0.08);
}

.problem-card h4 {
  color: var(--accent-color);
}


.skills-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.skills-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}


.format-list {
  list-style: none;
  padding-left: 0;
}

.format-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
}

.format-list li:last-child {
  border-bottom: none;
}

.format-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 1.2rem;
  margin-top: 0.3rem;
}


.advantage-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  background-color: var(--secondary-dark);
  padding: 2rem;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.1), 
    0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 7px 14px rgba(0,0,0,0.1), 
    0 3px 6px rgba(0,0,0,0.08);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
}


.audience-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.audience-item {
  text-align: center;
  margin-bottom: 2rem;
}

.audience-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.audience-desc {
  color: var(--text-secondary);
}


.accordion-item {
  background-color: var(--secondary-dark);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--secondary-dark);
  color: var(--text-primary);
  box-shadow: none;
  padding: 1.5rem;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-dark);
  color: var(--accent-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
}


.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 20px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--text-primary);
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(176, 176, 176, 0.7);
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color);
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.19), 
    0 6px 6px rgba(0,0,0,0.23);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.footer {
  background-color: var(--secondary-dark);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

.footer-links h5 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-map {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.expertise-section {
  position: relative;
}

.expertise-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.19), 
    0 6px 6px rgba(0,0,0,0.23);
  height: 100%;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-content {
  padding: 2rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.timeline-time {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-secondary);
}


.program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.program-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.program-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.program-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-primary);
}

.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.program-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.card h3, .card h4, .card h5, .card p {
  color: var(--text-primary);
}


.contact-info-card {
  background-color: var(--secondary-dark);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.1), 
    0 1px 3px rgba(0,0,0,0.08);
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.contact-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-text {
  color: var(--text-secondary);
}

.contact-link {
  color: var(--accent-color);
  font-weight: 600;
}


.bg-dark-accent {
  background-color: var(--secondary-dark);
}

.text-accent {
  color: var(--accent-color);
}

.shadow-soft {
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.1), 
    0 1px 3px rgba(0,0,0,0.08);
}

.rounded-custom {
  border-radius: 15px;
}

.opacity-75 {
  opacity: 0.75;
}

.mb-6 {
  margin-bottom: 4rem;
}

.mt-6 {
  margin-top: 4rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-dark);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--secondary-dark);
  border-radius: 15px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.19), 
    0 6px 6px rgba(0,0,0,0.23);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-weight: 700;
  margin-bottom: 0;
}

.cookie-category-desc {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
}

.form-switch .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}


.thank-you-container {
  text-align: center;
  padding: 5rem 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
}

.legal-date {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.legal-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}


@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 1rem;
  }
  
  .navbar-brand img {
    height: 30px;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 5rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
}


.iti {
  width: 100%;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #ff8c5a;
  transform: translateY(-3px);
}