:root {
    --primary: #003d7a;
    --secondary: #e30613;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --border-color: #e0e0e0;
    --gray-light: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  /* Reducido el padding para navbar más compacto */
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: var(--primary);
  /* Padding aún más reducido al hacer scroll */
  padding: 0.3rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .navbar-brand {
  color: white !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.navbar.scrolled .nav-link:hover {
  color: var(--secondary) !important;
}

/* Botones de navbar para scroll */
.navbar.scrolled .btn-track-navbar {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.navbar.scrolled .btn-track-navbar:hover {
  background-color: #ff8c00;
  border-color: #ff8c00;
}

.navbar.scrolled .btn-login-navbar {
  background-color: transparent;
  border-color: white;
  color: white;
}

.navbar.scrolled .btn-login-navbar:hover {
  background-color: white;
  color: var(--primary);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.navbar-brand i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.nav-link {
  color: var(--primary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Nuevos estilos para botones en navbar */
.btn-track-navbar {
  background-color: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-track-navbar:hover {
  background-color: #ff8c00;
  border-color: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.btn-track-navbar i {
  margin-right: 0.4rem;
}

.btn-login-navbar {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-login-navbar:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 51, 102, 0.2);
}

.btn-login-navbar i {
  margin-right: 0.4rem;
}

/* Responsive para botones de navbar */
@media (max-width: 991px) {
  .btn-track-navbar,
  .btn-login-navbar {
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-item.ms-3,
  .nav-item.ms-2 {
    margin-left: 0 !important;
  }
}

.btn-cliente {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cliente:hover {
  background-color: #c20410;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
  color: white;
}

.logo-img {
  height: 100px;
  width: auto;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.75) 0%, rgba(0, 61, 122, 0.6) 100%),
        url("https://rapidogigantesas.com/wp-content/uploads/2020/06/AdobeStock_90685921-scaled.jpeg") center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    animation: slideUp 0.8s ease 0.2s backwards;
    max-width: 800px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.btn-primary-custom:hover {
    background-color: #c20410;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.5);
    color: white;
}

.btn-secondary-custom {
    background-color: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ========== BARRA DE RASTREO ========== */
.tracking-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    padding: 2.5rem 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 61, 122, 0.25);
}

.tracking-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 0.8rem;
}

.tracking-content input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tracking-content input::placeholder {
    color: #999;
}

.tracking-content input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.2);
    transform: scale(1.02);
}

.tracking-content button {
    padding: 1rem 2rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tracking-content button:hover {
    background-color: #c20410;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

/* ========== SECCIÓN DE SERVICIOS ========== */
.services-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.15);
    border-color: var(--secondary);
    background: linear-gradient(135deg, white 0%, rgba(227, 6, 19, 0.02) 100%);
}

.service-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-5deg);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== SECCIÓN "¿POR QUÉ ELEGIRNOS?" ========== */
.why-us {
    padding: 6rem 0;
    background: white;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.why-us-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.why-us-item:last-child {
    border-bottom: none;
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    min-width: 60px;
}

.why-us-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.why-us-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-us-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== CONTADOR ESTADÍSTICAS ========== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    padding: 5rem 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ========== SECCIÓN DE CONTACTO Y FORMULARIO ========== */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary);
    min-width: 50px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ========== FORMULARIO DE CONTACTO ========== */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.btn-submit:hover {
    background-color: #c20410;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.5);
}

/* ========== SECCIÓN MAPA ========== */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

#mapa {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c20410;
    color: white;
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* SECCIÓN 2 - ¿QUIÉNES SOMOS? */
.about-section {
    padding: 6rem 0;
    background-color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-main-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-secondary-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.1);
}

.about-feature-item i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.about-feature-item span {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

/* SECCIÓN 3 - ¿QUÉ HACEMOS? */
.what-we-do-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    color: white;
}

.what-we-do-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-we-do-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.what-we-do-section .section-title h2 {
    color: white;
}

/* SECCIÓN 4 & 5 - SERVICIOS DETALLADOS */
.service-detail-section {
    padding: 6rem 0;
}

.service-terrestre {
    background-color: var(--light);
}

.service-aerea {
    background-color: white;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-main-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-secondary-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.service-terrestre .benefit-item {
    background: white;
}

.service-aerea .benefit-item {
    background: var(--gray-light);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    min-width: 30px;
}

.benefit-item span {
    font-weight: 600;
    color: var(--primary);
}

.service-ideal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.service-ideal-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
}

.service-ideal-list i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #c20410 100%);
    color: white;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.service-highlight i {
    font-size: 2rem;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Adding missing styles for service detail buttons */
.btn-service-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #c20410 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    cursor: pointer;
    margin-top: 1.5rem;
}

.btn-service-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.5);
    color: white;
    text-decoration: none;
}

.btn-service-detail i {
    font-size: 1.1rem;
}

.btn-service-detail-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* SERVICIO ESTRELLA - ÚLTIMA MILLA */
.star-service-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.star-service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.star-badge i {
    font-size: 1.2rem;
}

.star-service-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.impact-text {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    font-style: italic;
}

.star-service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-main {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro-secondary {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-highlight {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--secondary);
    font-weight: 700;
}

.star-service-value {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.star-service-value h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.star-service-value>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.value-promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 10px;
    text-align: center;
}

.promise-item i {
    font-size: 3rem;
    color: var(--secondary);
}

.promise-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Sistema de pago contra entrega */
.payment-system-section {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    color: white;
    border-radius: 15px;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.payment-header i {
    font-size: 3rem;
    color: white;
}

/* Adding missing styles for payment system modern section */
.payment-system-modern {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(227, 6, 19, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.payment-icon-badge i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.payment-header-modern h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.payment-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.payment-methods-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.payment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.payment-card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.payment-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.payment-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: white;
}

.payment-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.payment-cta-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary);
    border-radius: 10px;
    margin-top: 2rem;
}

.payment-cta-modern i {
    font-size: 2rem;
    color: white;
}

.payment-cta-modern span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

/* Adding missing styles for benefits modern section */
.benefits-modern-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-modern-card {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(227, 6, 19, 0.15);
    border-color: var(--secondary);
    background: white;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #c20410 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-modern-card:hover .benefit-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.benefit-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.benefit-modern-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.benefit-modern-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Adding missing styles for target audience modern section */
.target-audience-modern {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, white 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.audience-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.audience-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.audience-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.audience-modern-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.audience-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 61, 122, 0.15);
    border-color: var(--primary);
}

.audience-card-header {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.audience-modern-card:hover .audience-card-header {
    transform: rotate(-10deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary) 0%, #c20410 100%);
}

.audience-card-header i {
    font-size: 2.5rem;
    color: white;
}

.audience-modern-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.audience-modern-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.audience-cta-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    color: white;
    border-radius: 10px;
    margin-top: 3rem;
}

.audience-cta-modern i {
    font-size: 2rem;
    color: var(--secondary);
}

.audience-cta-modern span {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Adding missing styles for warehouse service section */
.warehouse-service-section {
    padding: 6rem 0;
    background: white;
}

.warehouse-header {
    text-align: center;
    margin-bottom: 4rem;
}

.warehouse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #c20410 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.warehouse-badge i {
    font-size: 1.2rem;
}

.warehouse-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.warehouse-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.warehouse-main-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.warehouse-secondary-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.warehouse-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.warehouse-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.warehouse-features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.warehouse-features-list i {
    font-size: 1.5rem;
    color: var(--secondary);
    min-width: 30px;
}

.warehouse-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #002847 100%);
    color: white;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.warehouse-highlight i {
    font-size: 2rem;
    color: var(--secondary);
}

.warehouse-benefits {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.warehouse-benefits h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.warehouse-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.warehouse-benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.15);
}

.warehouse-benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    min-width: 30px;
}

.warehouse-benefit-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 768px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .warehouse-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment-methods-modern {
        grid-template-columns: 1fr;
    }

    .payment-process-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .audience-cards-grid {
        grid-template-columns: 1fr;
    }
}