/* ============================================
   ATECHLO - COMPONENT STYLES (Consolidated)
   Navbar, Hero, Services, About, Logística,
   Contacto, Footer, Stats, Consultoría
   ============================================ */

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    transition: all 0.4s ease;
    background: rgba(0, 102, 204, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(130, 240, 101, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.logo img {
    height: 48px;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #82f065;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(15px);
    min-width: 220px;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 12px 20px;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
}

.dropdown-content a:hover {
    background: rgba(130, 240, 101, 0.1);
    color: #82f065;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* --- CAROUSEL / HERO --- */
.carousel-section {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    background-color: #0066cc;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #0066cc;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 102, 204, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: background 0.5s ease;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
}

.carousel-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.carousel-content p {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    letter-spacing: 1px;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #e65c00, #ff6600);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 102, 0, 0.4);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: rgba(0, 102, 204, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.5);
}

.carousel-control.prev { left: 30px; }
.carousel-control.next { right: 30px; }

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.indicator.active {
    background: linear-gradient(90deg, #0066cc, #82f065);
    width: 60px;
}

.indicator:hover {
    transform: scale(1.2);
}

/* --- SERVICES GRID --- */
.services-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
    border-color: #0066cc;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    border-color: #82f065;
    box-shadow: 0 0 20px rgba(130, 240, 101, 0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #82f065, #5dd13b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(130, 240, 101, 0.3);
    z-index: 10;
    text-transform: uppercase;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-content h3 {
    font-size: 1.1rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #82f065);
    border-radius: 2px;
}

.service-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid rgba(0, 51, 102, 0.05);
}

.about-modern-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-minimal-title {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.about-minimal-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #82f065;
    margin: 10px auto 0;
}

.about-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.about-minimal-item {
    padding: 20px;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.about-minimal-item:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.about-minimal-icon {
    color: #0066cc;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.about-minimal-item h3 {
    font-size: 1.2rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: normal;
}

.about-minimal-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* --- LOGÍSTICA SECTION --- */
.logistica-section {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.logistica-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #82f065);
}

.logistica-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logistica-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.logistica-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 50px 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 102, 204, 0.05);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.logistica-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.08);
    border-color: rgba(130, 240, 101, 0.3);
}

.logistica-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.05);
    transition: all 0.4s ease;
}

.logistica-card:hover .logistica-icon {
    transform: scale(1.1) rotate(5deg);
    background: #0066cc;
}

.logistica-card:hover .logistica-icon svg {
    stroke: #ffffff;
}

.logistica-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 700;
}

.logistica-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.logistica-link {
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.logistica-link:hover {
    color: #82f065;
    gap: 12px;
}

/* --- CONTACT SECTION --- */
.contacto-section {
    background-color: #ffffff;
}

.contacto-header {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacto-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(130, 240, 101, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.contacto-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contacto-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.contacto-quick-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #82f065;
}

.quick-info-item span {
    color: white;
}

.contacto-main {
    padding: 80px 0;
    background: #f8fafc;
}

.contacto-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}

.info-subtitle {
    font-size: 1.5rem;
    color: #003366;
    font-weight: 800;
    margin-bottom: 30px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text h4 {
    font-size: 1rem;
    color: #0066cc;
    margin-bottom: 5px;
    font-weight: 700;
}

.benefit-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.contacto-img-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contacto-imagen-modern {
    width: 100%;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.contacto-img-wrapper:hover .contacto-imagen-modern {
    filter: grayscale(0%);
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.05);
    border: 1px solid #f1f5f9;
}

.form-title {
    font-size: 1.4rem;
    color: #003366;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
}

.contacto-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group-modern {
    position: relative;
    margin-bottom: 5px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 20px 12px 10px;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s;
    outline: none;
}

.form-group-modern label {
    position: absolute;
    left: 12px;
    top: 18px;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label,
.form-group-modern select:focus + label,
.form-group-modern select:valid + label {
    top: 0;
    font-size: 0.8rem;
    color: #0066cc;
    font-weight: 700;
}

.form-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #82f065);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group-modern input:focus ~ .form-bar,
.form-group-modern textarea:focus ~ .form-bar,
.form-group-modern select:focus ~ .form-bar {
    width: 100%;
}

.contacto-btn-modern {
    background: #0066cc;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.contacto-btn-modern:hover {
    background: #004d99;
}

.form-privacy {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 10px;
}

/* --- FOOTER --- */
.custom-footer {
    background: #001a33;
    color: #e0e0e0;
    padding: 60px 0 30px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #82f065);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #82f065;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #82f065;
    transform: translateX(5px);
}

.brand-col .footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-copyright p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

/* --- STATS SECTION --- */
.stats-section {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    background-image: radial-gradient(rgba(130, 240, 101, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #82f065;
    display: block;
}

.stat-symbol {
    font-size: 1.5rem;
    font-weight: 800;
    color: #82f065;
}

.stat-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px 0;
    font-weight: 600;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.shape-divider-top,
.shape-divider-bottom {
    overflow: hidden;
    position: relative;
}

/* --- CONSULTORÍA SECTION --- */
.consultoria-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    text-align: center;
}

.consultoria-titulo {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #003366;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto;
}

.consultoria-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.consultoria-card {
    background: white;
    border-radius: 24px;
    padding: 60px 35px 45px;
    width: 350px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.consultoria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.08);
}

.card-number-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #82f065);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid white;
}

.consultoria-card h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 15px;
}

.consultoria-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* --- SERVICE BANNER --- */
.service-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    overflow: hidden;
}

.service-banner__image {
    width: 100%;
    height: 100%;
}

.service-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 102, 204, 0.6) 100%);
}

.service-banner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.service-banner__content h1 {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.service-banner__content p {
    font-size: clamp(0.85rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    font-weight: 300;
}

.service-banner__cta {
    display: inline-block;
    padding: 14px 35px;
    background: #82f065;
    color: #003366;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-banner__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(130, 240, 101, 0.4);
}

/* --- SERVICIOS GRID (internal page) --- */
.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

.servicio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    transition: all 0.4s ease;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.card-icon-circle,
.card-icon-circle1 {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 0 25px 30px;
}

.card-title {
    font-size: 1.1rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.card-list li::before {
    content: '✓';
    color: #82f065;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.btn-interes {
    background: linear-gradient(135deg, #0066cc, #004d99);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-interes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-interes-link {
    text-decoration: none;
    display: block;
}

.central-rectangle {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 5;
}

.central-rectangle h2 {
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
}

/* --- INTEREST BTN --- */
.interest-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.interest-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.interest-btn:hover::before {
    width: 300px;
    height: 300px;
}

.interest-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #004d99 0%, #003366 100%);
}

.interest-btn:active {
    transform: translateY(-1px);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-minimal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-minimal-item {
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 30px;
    }
    .about-minimal-item:last-child {
        border-bottom: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .central-rectangle {
        display: none;
    }
    .navbar {
        padding: 15px 5%;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 350px;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        margin-bottom: 20px;
    }
    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        border-left: 2px solid #82f065;
        margin-top: 10px;
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 60vh;
    }
    .carousel-content {
        width: 90%;
    }
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .section-header h2 {
        font-size: 1.4rem;
    }
    .interest-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    .logistica-card {
        padding: 40px 25px;
    }
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .servicio-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .custom-footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 65vh;
    }
    .carousel-content h2 {
        font-size: 2rem;
    }
    .carousel-content p {
        font-size: 1rem;
    }
    .carousel-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 3001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        left: 20px;
    }
}
