/* Base Variables */
:root {
    --brand-orange: #F77418;
    --brand-blue: #0A2D55;
    --text-dark: #2b2b2b;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f8f8f8;
    --black-bar: #1c1c1c;
    --font-main: 'Maven Pro', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
}

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

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--brand-blue), #1e5ba3);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--brand-orange);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}



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

.logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 45px;
    object-fit: contain;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.icon-link {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-dark);
}

/* Header Nav */
.header-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--brand-blue);
}

.header-nav a.btn-black {
    background-color: var(--black-bar);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.header-nav a.btn-black:hover {
    background-color: #333;
}

/* Accent Alert Bar */
.accent-bar {
    background-color: var(--brand-orange);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-outline-black {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-outline-black:hover {
    background-color: #fff;
    color: var(--brand-orange);
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 550px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 45, 85, 0.75); /* Darkened brand blue overlay */
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    color: var(--brand-orange);
}

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

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-white {
    background: #fff;
    color: var(--brand-blue);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-white:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* Tablet frame */
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.tablet-frame {
    background: #111;
    padding: 15px 15px 25px 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: rotate(5deg);
    max-width: 400px;
    border: 2px solid #333;
}

.tablet-screen {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* Pro Floating Badges */
.pro-badge {
    position: absolute;
    z-index: 10;
}

.pro-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
}

.pro-badge-icon {
    background: var(--brand-orange);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pro-badge-text {
    display: flex;
    flex-direction: column;
}

.pro-badge-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand-blue);
    line-height: 1.2;
}

.pro-badge-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pro-badge-content:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.badge-1 {
    top: 10%;
    right: -90px;
    animation: float-pro 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -70px;
    animation: float-pro 6s ease-in-out infinite 1s;
}

@keyframes float-pro {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Trust Bar */
.trust-bar {
    background-color: var(--brand-blue);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 1.2rem;
    vertical-align: middle;
}

.highlight-text {
    background-color: var(--brand-orange);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    margin: 0 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Sectors Section (Circular) */
.sectors-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: var(--brand-blue);
}

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

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.accent-bg {
    background-color: var(--brand-orange);
}

.circle-emoji {
    font-size: 5rem;
}

.circle-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.ver-coleccion {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
}

.ver-coleccion:hover {
    color: var(--brand-orange);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-gray);
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--brand-blue);
}

.contact-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--brand-orange);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.required {
    color: red;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--brand-blue);
}

.btn-submit {
    width: 100%;
    background-color: var(--brand-orange);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-main);
}

.btn-submit:hover {
    background-color: #d8610e;
}

/* Footer */
.footer {
    background: var(--brand-blue);
    padding: 60px 0 20px;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    object-fit: contain;
}

.footer-col p {
    color: #cbd5e1;
    margin-top: 15px;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 45, 85, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--brand-orange);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: var(--brand-blue);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.phone-link:last-child {
    margin-bottom: 0;
}

.phone-link:hover {
    border-color: var(--brand-orange);
    background: rgba(247, 116, 24, 0.05);
    transform: translateX(5px);
}

.phone-icon {
    font-size: 1.5rem;
    background: #f8f8f8;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.phone-link:hover .phone-icon {
    background: rgba(247, 116, 24, 0.1);
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-details strong {
    font-size: 0.95rem;
    color: var(--brand-blue);
}

.phone-details span {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-image-wrapper {
        justify-content: center;
    }
    
    .circles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .header-nav {
        flex-wrap: wrap;
    }
    
    .circles-grid {
        grid-template-columns: 1fr;
    }
    
    .circle {
        width: 180px;
        height: 180px;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .trust-content .divider {
        display: none;
    }
}
