/* Reset y variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E7D32;
    --secondary-color: #1B5E20;
    --dark-color: #1B4332;
    --light-color: #ffffff;
    --gray-color: #2D5016;
    --accent-color: #4CAF50;
    --bg-color: #F1F8E9;
    --border-color: #C8E6C9;
    --text-color: #2E4339;
    --max-width: 1200px;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Aplicar estilos de DJI T50 a index.html de WordPress */

/* Hero con video de fondo */
.elementor-background-video-hosted {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

/* Contenedor principal del hero */
.elementor-element.e-parent[data-settings*="background_video"] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Títulos con estilo DJI */
.elementor-heading-title {
    color: var(--light-color);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
}

/* Hero títulos grandes */
.elementor-element-a367085 .elementor-heading-title,
.elementor-element-e89a96f .elementor-heading-title {
    font-size: 4rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

/* Botones con estilo DJI */
.elementor-button {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.elementor-button:hover {
    background: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

/* Secciones con espaciado DJI */
.e-con.e-parent {
    padding: 4rem 0;
}

/* Formularios de contacto con estilo DJI */
.eael-contact-form-7-wrapper {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.wpcf7-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--light-color);
}

.wpcf7-form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.wpcf7-submit {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.wpcf7-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

/* Carruseles de imágenes */
.elementor-image-carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.swiper-slide-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.swiper-slide:hover .swiper-slide-image {
    transform: scale(1.05);
}

/* Icon boxes con estilo DJI */
.elementor-icon-box-wrapper {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.elementor-icon-box-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.elementor-icon-box-icon {
    margin-bottom: 2rem;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-icon {
    transform: scale(1.1);
}

.elementor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--light-color);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.elementor-icon-box-title {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.elementor-icon-box-description {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Acordeones con estilo DJI */
.elementor-accordion {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.elementor-tab-title {
    background: var(--bg-color);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 700;
    color: var(--dark-color);
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.elementor-tab-title:hover,
.elementor-tab-title.elementor-active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    transform: translateX(5px);
}

.elementor-tab-content {
    padding: 2rem;
    background: var(--light-color);
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Efectos hover para contenedores transformables */
.e-transform:hover {
    transform: scale(1.05) translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Contenedores principales */
.e-con.e-parent[data-settings*="background_background"] {
    position: relative;
    overflow: hidden;
}

/* Textos y párrafos con estilo DJI */
.elementor-widget-text-editor p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Secciones con fondos alternados */
.e-con.e-parent:nth-child(even) {
    background: var(--bg-color);
}

.e-con.e-parent:nth-child(odd) {
    background: var(--light-color);
}

/* Títulos de sección grandes */
.elementor-widget-heading h2.elementor-heading-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.elementor-widget-heading h2.elementor-heading-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elementor-icon-box-wrapper,
.elementor-accordion,
.eael-contact-form-7-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .elementor-element-a367085 .elementor-heading-title,
    .elementor-element-e89a96f .elementor-heading-title {
        font-size: 2.5rem;
    }

    .elementor-widget-heading h2.elementor-heading-title {
        font-size: 2rem;
    }

    .e-con.e-parent {
        padding: 2rem 0;
    }

    .elementor-icon-box-wrapper {
        padding: 2rem 1.5rem;
    }

    .elementor-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .eael-contact-form-7-wrapper {
        padding: 2rem;
    }
}

/* Estilos específicos para dji-agras-t50.html */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1B4332 0%, #2E7D32 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: auto;
    height: 92px;
}

.logo img {
    height: 4px;
    width: auto;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.2rem 0.6rem;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.nav-menu li a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover::after {
    width: 80%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(27, 67, 50, 0.98);
    min-width: 280px;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 1rem 2rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #ffffff;
    border-left-color: #4CAF50;
    transform: translateX(5px);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.95);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-toggle:hover span {
    background: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 92px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.hero-content {
    text-align: center;
    color: var(--light-color);
    z-index: 2;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 10px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Sections */
section {
    padding: 4rem 0;
}

.intro {
    background: var(--light-color);
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features {
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    text-align: center;
    margin: 0 auto;
}

/* Adaptability Section */
.adaptability {
    background: var(--light-color);
}

.adapt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.adapt-item {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-color);
    border-radius: 5px;
}

.adapt-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.adapt-item ul {
    list-style: none;
    padding-left: 0;
}

.adapt-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* Operations */
.operations {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.operations h2 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.operation-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.operation-card:hover {
    transform: scale(1.05);
}

.operation-type {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 1rem;
}

.operation-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* System Content */
.system-content, .pump-content, .centrifugal-content, .valves-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.system-video video, .pump-video video, .centrifugal-video video, .valves-video video {
    width: 100%;
    border-radius: 10px;
}

.spray-system {
    background: var(--bg-color);
}

.pump-section {
    background: var(--light-color);
}

.centrifugal-section {
    background: var(--bg-color);
}

.valves-section {
    background: var(--light-color);
}

/* Extension System */
.extension-system {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.extension-system h2,
.extension-system h3 {
    color: var(--light-color);
}

.extension-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ext-feature {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
}

.ext-feature h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

/* Reliability */
.reliability {
    background: var(--bg-color);
    text-align: center;
}

/* Vision and Radar */
.vision-radar {
    background: var(--light-color);
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vision-item {
    text-align: center;
}

.vision-item video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.vision-item h4 {
    color: var(--dark-color);
}

/* Signal Stability */
.signal-content, .relay-content, .survey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.signal-video video, .relay-video video, .survey-video video {
    width: 100%;
    border-radius: 10px;
}

.signal-stability {
    background: var(--bg-color);
}

.dji-relay {
    background: var(--light-color);
}

.aerial-survey {
    background: var(--bg-color);
}

.aerial-survey-field {
    background: var(--light-color);
    text-align: center;
}

.aerial-survey-field img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 10px;
}

/* Fast Charging */
.fast-charging {
    background: var(--light-color);
    text-align: center;
}

.charging-video {
    margin: 2rem 0;
}

.charging-video video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
}

.charging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.charging-item {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.charging-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Orchard Mode */
.orchard-mode {
    background: var(--bg-color);
}

.orchard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.orchard-video video {
    width: 100%;
    border-radius: 10px;
}

/* Lateral Spray */
.lateral-spray {
    background: var(--light-color);
}

.lateral-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lateral-video video {
    width: 100%;
    border-radius: 10px;
}

/* T50 Action */
.t50-action {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.t50-action h2 {
    color: var(--light-color);
}

.action-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-video video {
    width: 100%;
    border-radius: 10px;
}

/* Additional Sprayers */
.additional-sprayers {
    background: var(--bg-color);
}

.sprayers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sprayers-video video {
    width: 100%;
    border-radius: 10px;
}

/* Ecosystem, Multifunctional, Remote Control */
.ecosystem, .multifunctional, .remote-control {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.ecosystem h2, .multifunctional h2, .remote-control h2 {
    color: var(--light-color);
}

/* Contact */
.contact {
    background: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.contact h2 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.contact-item h4 {
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--light-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}

.footer-logo img:first-child {
    margin-bottom: 1rem;
}

.footer-logo img:last-child {
    width: 200px !important;
    height: auto !important;
    margin-top: 0 !important;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column ul {
    list_style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 0.5rem 0;
}

.footer-column ul li::before {
    content: "• ";
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-color);
    opacity: 0.8;
}

/* Responsive Design - Mobile First */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .features-grid, .operations-grid, .extension-features, .vision-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .system-content, .pump-content, .centrifugal-content, 
    .valves-content, .signal-content, .relay-content, .survey-content,
    .orchard-content, .lateral-content, .sprayers-content {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

    .nav {
        padding: 0 15px;
        justify-content: center;
    }

    .logo {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin: 0 auto;
        max-width: 375px;
        margin-left: -20px;
    }

    .logo img {
        height: 52px;
    }

    .nav-toggle {
        display: flex !important;
        position: fixed !important;
        right: 20px !important;
        top: 20px !important;
        z-index: 99999 !important;
        background: rgba(0,0,0,0.9) !important;
        border: 3px solid #ffffff !important;
        border-radius: 8px !important;
        width: 55px !important;
        height: 55px !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 8px !important;
        flex-direction: column !important;
        cursor: pointer !important;
        visibility: visible !important;
```text
        opacity: 1 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        transform: none !important;
        left: auto !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    }

    .nav-toggle span {
        width: 30px !important;
        height: 4px !important;
        background: #ffffff !important;
        margin: 4px 0 !important;
        transition: all 0.3s ease !important;
        display: block !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: rgba(27, 67, 50, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }

    .nav-menu li a {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        display: block;
    }

    .nav-menu a:hover {
        color: var(--accent-color);
        background: rgba(255,255,255,0.1);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        border-radius: 0;
        margin-top: 0.5rem;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-menu a:hover {
        background: var(--primary-color);
        color: var(--light-color);
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .features-grid, .adapt-grid, .operations-grid, 
    .extension-features, .vision-features, .charging-grid, .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .system-content, .pump-content, .centrifugal-content, 
    .valves-content, .signal-content, .relay-content, .survey-content,
    .orchard-content, .lateral-content, .sprayers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .action-videos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 20px;
    }

    h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .feature-card, .operation-card, .ext-feature, .charging-item {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .nav {
        padding: 0 10px;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .logo {
        flex-direction: column;
        gap: 5px;
        align-items: center;
        margin-right: 10px;
        margin-left: -15px;
        flex-shrink: 1;
    }

    .logo img {
        height: 45px;
    }

    .header {
        padding: 0.1rem 0;
        min-height: 40px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .hero {
        margin-top: 45px;
    }

    .nav-toggle {
        position: relative;
        right: 0;
        flex-shrink: 0;
        margin-left: 10px;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card, .operation-card, .ext-feature, .charging-item {
        padding: 1.2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .intro-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .vision-item h4,
    .charging-item h4,
    .contact-item h4 {
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 10px;
    }

    .nav {
        padding: 0 8px;
    }

    .logo {
        gap: 3px;
        margin-left: -10px;
    }

    .logo img {
        height: 38px;
    }

    .nav-toggle span {
        width: 20px;
        height: 2px;
    }

    .feature-card, .operation-card, .ext-feature, .charging-item {
        padding: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .feature-card, .ext-feature, .charging-item {
        padding: 1.5rem;
    }
}

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

.feature-card, .operation-card, .ext-feature, .charging-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Videos responsivos */
video {
    max-width: 100%;
    height: auto;
}

/* Botón principal */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
    color: var(--light-color);
}

/* Iconos de características */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Cliente logos */
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.client-logos img {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
}

/* Formulario de contacto */
.contact-form-container {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--light-color);
    font-size: 16px;
    backdrop-filter: blur(5px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--light-color);
    outline: none;
    background: rgba(255,255,255,0.2);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}

.contact-form select {
    margin-bottom: 1.5rem;
}

.contact-form option {
    background: var(--dark-color);
    color: var(--light-color);
}

/* Enlaces sociales */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .client-logos {
        gap: 1rem;
    }

    .client-logos img {
        height: 60px;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links a {
        text-align: center;
    }
}

/* Estilos base para logos - MÓVIL */
.logo img {
    height: 90px !important;
    width: 90px !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Estilos específicos para PC (desktop) */
@media (min-width: 769px) {
    .logo img {
        height: 169px !important;
        width: 169px !important;
    }
}

/* Media queries para tablets */
@media (max-width: 1024px) {
    .logo img {
        height: 113px !important;
        width: 113px !important;
    }

    .nav-menu a {
        font-size: 1.65rem;
    }

    .nav-menu {
        gap: 2rem;
    }
}

/* Media queries para móviles pequeños */
@media (max-width: 768px) {
    .logo img {
        height: 90px !important;
        width: 90px !important;
    }

    .nav-menu a {
        font-size: 1.8rem;
    }
}

/* Media queries para móviles muy pequeños */
@media (max-width: 480px) {
    .logo img {
        height: 79px !important;
        width: 79px !important;
    }
}

/* Increasing header height by 15% and adjusting the hero section padding accordingly for different screen sizes. */
@media (min-width: 769px) {
    .hero {
        padding-top: 236px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 162px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 130px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 114px;
    }
}