/* Valen SPA - Diseño copiado de Halcón Seguridad Privada */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #f5a623;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

strong {
    font-weight: 600;
}

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

/* ==================== HEADER ==================== */
.site-header {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.header-top {
    background: #16213e;
    padding: 12px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #f5a623;
}

.social-icons svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.social-icons a:hover svg {
    fill: #16213e;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.header-contact svg {
    width: 16px;
    height: 16px;
    fill: #f5a623;
}

/* Header Main */
.header-main {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    max-width: 180px;
    height: auto;
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5a623;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #f5a623;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #16213e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #f5a623;
    color: #16213e;
    transform: translateY(-2px);
}

.header-cta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: #16213e;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,176C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-text {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5a623;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5a623;
    color: #16213e;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    color: #16213e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ==================== SECTION STYLES ==================== */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5a623;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-title-dark {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-label-light {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5a623;
    margin-bottom: 15px;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Feature Box */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #16213e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: #f5a623;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-desc {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* About Images */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header p {
    color: #6b6b6b;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Row */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-content p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Service Button */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #16213e;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #f5a623;
    color: #16213e;
    transform: translateY(-2px);
}

.btn-service svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ==================== WHY SECTION ==================== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.why-section .section-title-light {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #f5a623;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    fill: #f5a623;
}

.why-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header p {
    color: #6b6b6b;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #f5a623;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    color: #ffffff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-list {
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-list svg {
    width: 24px;
    height: 24px;
    fill: #f5a623;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a,
.contact-list span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.contact-list a:hover {
    color: #f5a623;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5a623;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: #16213e;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #f5a623;
    color: #16213e;
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #0f0f1a;
    padding: 80px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col:first-child {
    padding-right: 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 25px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 600;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #f5a623;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: #f5a623;
    flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact a:hover {
    color: #f5a623;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

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

.footer-social a:hover {
    background: #f5a623;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.footer-social a:hover svg {
    fill: #16213e;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-main-content {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .about-main {
        grid-template-columns: 1fr;
    }

    .about-features {
        flex-direction: row;
    }

    .about-features .feature-box {
        flex: 1;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-row.reverse .service-image {
        order: -1;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 16px;
    }

    .section-title,
    .section-title-light {
        font-size: 2rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-images img {
        height: 250px;
    }

    .about-features {
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .service-image img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .header-top {
        display: none;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

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

    .section-title,
    .section-title-light,
    .section-title-dark {
        font-size: 1.6rem;
    }

    .about-section,
    .services-section,
    .why-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .btn-primary,
    .btn-service {
        padding: 12px 25px;
        font-size: 13px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
