1/*
@Author: ThemeMascot
@URL: http://ThemeMascot.com

This is the file where you can add your custom styles to change the look of the
theme. But don't modify style-main.css file.

*/

/* Your custom css codes start here: */

   /* Forzar eliminar cualquier línea/borde */
  *, *::before, *::after {
    border-top: none !important;
  }

  body, html, #wrapper, .header, header {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  /* Google Translate */
  .goog-te-banner-frame,
  .skiptranslate,
  .skiptranslate iframe,
  #goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    border: none !important;
  }

  body {
    top: 0 !important;
    position: static !important;
  }



  /* Toggle de idioma */
  .language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lang-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
  }

  .lang-label.active {
    color: #1e40af;
  }

  .toggle-container {
    width: 60px;
    height: 32px;
    background: linear-gradient(145deg, #e2e4e9, #ffffff);
    border-radius: 20px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1),
                inset -2px -2px 5px rgba(255,255,255,0.8),
                2px 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }

  .toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .toggle-slider.right {
    left: 30px;
  }

  .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Separar toggle de idioma del menú */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.3);
}


/* Reset y variables Donación */
.donation-modal {
    --primary: #00a8a8;
    --primary-dark: #008080;
    --secondary: #667eea;
    --gradient: linear-gradient(135deg, #00a8a8 0%, #667eea 100%);
    --text-dark: #2d3748;
    --text-muted: #718096;
    --border: #e2e8f0;
    --bg-light: #f7fafc;

    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Header */
.donation-header {
    background: var(--gradient);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.donation-header .close-custom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.donation-header .close-custom:hover {
    background: rgba(255,255,255,0.3);
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.donation-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.donation-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Body */
.donation-body {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
}

/* Montos predefinidos */
.amount-section {
    margin-bottom: 1.5rem;
}

.preset-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.amount-btn {
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: white;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.amount-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

.custom-amount {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-weight: 600;
}

.amount-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Datos del donante */
.donor-section {
    margin-bottom: 1.5rem;
}

.input-group-custom {
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Checkbox anónimo  */
.anonymous-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.anonymous-check input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.anonymous-check input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.anonymous-check input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

/* Mensaje */
.message-section {
    margin-bottom: 1rem;
}

.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    resize: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.donation-footer {
    padding: 1.5rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.total-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.total-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.currency-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contenedor PayPal */
#paypal-button-container {
    min-height: 50px;
    margin-bottom: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
    .preset-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-header {
        padding: 1.5rem 1rem;
    }

    .donation-title {
        font-size: 1.4rem;
    }

    .donation-body {
        max-height: 300px;
    }
}
.progress-bar .percent {
    display: none !important;
}


.background-header.{
 background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}


/* Esconder en DESKTOP idioma (769px para arriba) */
@media (min-width: 769px) {
    .idioma_movil {
        display: none;
    }
    
    .movil_donacion_uno{
       display: none;  
    }
}

/* APARECE en móvil */
@media (max-width: 768px) {
    .idioma_movil {
        display: block;
         margin-left: 0px;
  padding-left: 0px;
    }
    
    .movil_donacion_uno{
       display: block;  
    }
}

/* FORZAR SIDEBAR VISIBLE EN MÓVIL */
@media (max-width: 991px) {
  /* Resetear el sidebar */
  .sidebar-fixed,
  .col-md-4.sidebar.pull-right.flip.sidebar-fixed,
  #sidebar-donacion {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 20px 0 !important;
    z-index: 100 !important;
  }
  
  /* Asegurar que el row use flexbox para reordenar */
  .section-content > .row {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* El sidebar va después del contenido principal */
  .section-content > .row > .col-md-8 {
    order: 1 !important;
  }
  
  .section-content > .row > .col-md-4.sidebar {
    order: 2 !important;
  }
}

@media (max-width: 767px) {
  .sidebar-fixed {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 15px !important;
  }
  
  .widget {
    display: block !important;
    visibility: visible !important;
  }
}



/* Iconos de compartir - Estilo minimalista */
.share-buttons {
  display: flex !important;
  gap: 15px;
  margin-top: 15px;
}

.share-buttons a,
.share-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
}

.share-buttons a i,
.share-btn i {
  color: #17a2b8 !important;
  font-size: 22px;
}

.share-buttons a:hover i {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .share-buttons {
    justify-content: flex-start;
  }
  
  .share-buttons a i,
  .share-btn i {
    font-size: 20px;
  }
}

.header-top{
   display:none; 
}

.menuzord-brand img{
  width:200px;
    margin-left: -80px;
    float: left;  
    
}
.language-toggle{
    margin:auto;
}
