/* ===================================
   TECNOCLEVELAND - ESTILOS PRINCIPALES
   =================================== */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: #FF5500;
    color: white;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    font-size: 13px;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* ===================================
   HEADER
   =================================== */
header {
    background: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 43px;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: none; /* Mostrar cuando tengas el logo */
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #84CD05;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #84CD05;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #84CD05;
}

.btn-header {
    background: #84CD05;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(132, 205, 5, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 205, 5, 0.5);
    background: #75b805;
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: left 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-header .logo {
    font-size: 28px;
}

.close-menu {
    font-size: 32px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}

.mobile-menu-content a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.mobile-menu-content a:hover {
    background: #f8f8f8;
    padding-left: 30px;
    color: #84CD05;
}

.mobile-menu-footer {
    background: #84CD05;
    padding: 40px 20px;
    text-align: center;
}

.mobile-menu-footer .social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.mobile-menu-footer .social-links a {
    color: #FF5500;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.mobile-menu-footer .social-links a:hover {
    transform: scale(1.3);
}

.mobile-menu-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-footer .footer-links a {
    color: #FF5500;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.mobile-menu-footer .footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.overlay {
    display: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    margin-top: 143px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(132, 205, 5, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 85, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-top: 20px;
}

.hero-buttons {
    margin-top: 30px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
    background: #84CD05;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(132, 205, 5, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(132, 205, 5, 0.5);
    background: #75b805;
}

.btn-secondary {
    background: #FF5500;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.5);
    background: #e64d00;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 50px;
    background: #f8f8f8;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: #FF5500;
    margin-bottom: 10px;
}

/* ===================================
   TRANSFORM SECTION
   =================================== */
.transform {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 50px;
    gap: 50px;
}

.transform-content h2 {
    font-size: 36px;
    color: #FF5500;
    margin-bottom: 20px;
}

.transform-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FF5500;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.transform-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #84CD05 0%, #FF5500 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Elementos flotantes decorativos */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: white;
    top: 20%;
    left: 10%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background: white;
    bottom: 30%;
    right: 15%;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: white;
    top: 60%;
    left: 50%;
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution {
    background: #84CD05;
    color: white;
    padding: 80px 50px;
    text-align: center;
    position: relative;
}

.solution h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-card h3 {
    color: #84CD05;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Decoraciones de ondas */
.wave-decoration {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/decorations/wave.svg') repeat-x;
    background-size: contain;
}

.wave-decoration.top {
    top: 0;
    transform: rotate(180deg);
}

.wave-decoration.bottom {
    bottom: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 80px 50px;
    background: #f8f8f8;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: #FF5500;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #84CD05;
    font-size: 24px;
    margin-bottom: 15px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    background: #0474FD;
    color: white;
    padding: 80px 50px;
}

.benefits h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #84CD05;
    font-size: 18px;
    margin-bottom: 10px;
}

/* ===================================
   MODALITIES SECTION
   =================================== */
.modalities {
    padding: 80px 50px;
    text-align: center;
}

.modalities h2 {
    font-size: 36px;
    color: #FF5500;
    margin-bottom: 50px;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.modality-card {
    background: #84CD05;
    color: white;
    padding: 50px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.modality-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modality-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* ===================================
   OUTSOURCING SECTION
   =================================== */
.outsourcing {
    background: #CC67FE;
    color: white;
    padding: 80px 50px;
}

.outsourcing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.outsourcing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.outsourcing-item {
    text-align: center;
    padding: 20px;
}

.outsourcing-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background: #84CD05;
    padding: 80px 50px;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-rating {
    color: #FF5500;
    font-size: 20px;
    margin-bottom: 15px;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: #FF5500;
    color: white;
    padding: 80px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #84CD05;
}

.contact button {
    background: #84CD05;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(132, 205, 5, 0.3);
    width: 100%;
}

.contact button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(132, 205, 5, 0.5);
    background: #75b805;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: #333;
    color: white;
    padding: 50px;
    text-align: center;
}

.footer-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-stat h3 {
    color: #84CD05;
    font-size: 32px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.footer-social a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.3);
    color: #84CD05;
}