:root {
    --brand-blue: #0B1F4D;
    --brand-orange: #F97316;

    --bg-dark: #F5F5F3;

    --surface: #FFFFFF;

    --surface-light: #EFEDE8;

    --text-primary: #0B1F4D;

    --text-secondary: #6B7280;

    --font-heading: 'Outfit', sans-serif;

    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --form-bg: rgba(255, 255, 255, 0.8);

    --form-border: rgba(249, 115, 22, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.text-orange {
    color: var(--brand-orange);
}

/* Navbar */
.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 0.3rem 0;

    transition: var(--transition);

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(8px);

    box-shadow: 0 2px 18px rgba(0,0,0,0.04);
}

.navbar.scrolled {

    background: white;

    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {

    height: 52px;

    width: auto;

    object-fit: contain;

    transition: var(--transition);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--brand-orange);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--brand-orange);
}

/* Buttons */
.btn-primary {
    background-color: var(--brand-orange);
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 103, 34, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--brand-orange);
    color: var(--brand-orange) !important;
    box-shadow: 0 6px 20px rgba(242, 103, 34, 0.5);
    transform: translateY(-2px);
}

.btn-large {

    padding: 1rem 2rem;

    font-size: 1rem;
}

/* Hero Section */
.hero {

    min-height: 58vh;

    display: flex;

    align-items: center;

    position: relative;

    padding-top: 1rem;

    overflow: hidden;
}

.hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image:
    linear-gradient(
        90deg,
        rgba(245,245,243,0.72) 18%,
        rgba(245,245,243,0.35) 42%,
        rgba(0,0,0,0.03) 100%
    ),
    url('assets/2.png');

    background-size: cover;

    background-position: center;

    z-index: -1;
}
.hero-content {

    max-width: 520px;

    position: relative;

    z-index: 1;

    padding-top: 1rem;
}

.badge-construccion {
    display: inline-block;
    background: rgba(242, 103, 34, 0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(242, 103, 34, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    animation: flashBadge 2s infinite alternate;
}

@keyframes flashBadge {
    0% {
        box-shadow: 0 0 5px rgba(242, 103, 34, 0.2);
    }

    100% {
        box-shadow: 0 0 15px rgba(242, 103, 34, 0.6);
    }
}

.hero-title {

    font-size: 2rem;

    line-height: 1.05;

    margin-bottom: 0.8rem;

    color: #0B1F4D;

    max-width: 480px;

    font-weight: 800;
}
.hero-subtitle {

    font-size: 0.95rem;

    color: #4B5563;

    margin-bottom: 1.2rem;

    font-weight: 400;

    border-left: 3px solid var(--brand-orange);

    padding-left: 0.8rem;

    max-width: 420px;

    line-height: 1.5;
}

/* Casos de Exito */
.seccion-casos {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {

    font-size: 3.5rem;

    margin-bottom: 1rem;

    color: #0B1F4D;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid-casos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card-caso {

    background: white;

    border-radius: 28px;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    border: none;
}

.card-caso:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(242, 103, 34, 0.3);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
}

.card-overlay h3 {
    font-size: 1.5rem;
    color: white;
    transform: translateY(10px);
    transition: var(--transition);
}

.card-caso:hover .card-overlay h3 {
    transform: translateY(0);
    color: var(--brand-orange);
}

.card-body {
    padding: 1.5rem;
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contacto Section */
.seccion-contacto {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), var(--surface));
    position: relative;
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contacto-info h2 {

    font-size: 3rem;

    margin-bottom: 1.5rem;

    color: #0B1F4D;
}

.contacto-info p {

    color: #4B5563;

    font-size: 1.125rem;

    margin-bottom: 3rem;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 1rem;

    color: #0B1F4D;

    font-size: 1rem;

    font-weight: 500;

    margin-bottom: 1.5rem;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-orange);
}

.info-item .icon {
    font-size: 2rem;
    background: rgba(242, 103, 34, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--brand-orange);
}

.contact-item i {

    width: 52px;

    height: 52px;

    background: rgba(249,115,22,0.10);

    color: var(--brand-orange);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;
}

/* Google Form Style */
.contacto-form-container {

    background: white;

    padding: 4rem;

    border-radius: 32px;

    border-top: 8px solid var(--brand-orange);

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);

    position: relative;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--brand-orange);
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.form-group:focus-within {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--brand-orange);
}

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

.required {
    color: var(--brand-orange);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {

    width: 100%;

    background: #F5F5F3;

    border: 1px solid #E5E7EB;

    border-radius: 12px;

    color: #0B1F4D;

    font-family: var(--font-body);

    font-size: 1rem;

    padding: 1rem;

    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-orange);
}

select {
    color: var(--text-secondary);
}

select option {
    background: var(--surface);
    color: white;
}

.btn-submit {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background-color: #d15619;
}
/* Footer Premium */

footer {

    background: linear-gradient(
        135deg,
        #081F5C 0%,
        #0B2A78 100%
    );

    padding: 2rem 0 1rem;

    text-align: center;

    color: white;

    position: relative;

    overflow: hidden;
}

.footer-content {

    max-width: 1000px;

    margin: 0 auto;
}

.footer-logo-box {

    width: 88px;

    height: 88px;

    background: rgba(255,255,255,0.96);

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 1rem;

    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.footer-main-logo {

    width: 78px;

    transform: scale(1.80);

    height: auto;

    object-fit: contain;
}

.footer-content h3 {

    font-size: 1.5rem;

    margin-bottom: 0.6rem;

    font-weight: 700;

    color: white;
}

.footer-description {

    max-width: 720px;

    margin: 0 auto 1rem;

    color: rgba(255,255,255,0.78);

    font-size: 1rem;

    line-height: 1.6;
}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 2rem;

    margin-bottom: 1rem;
}

.footer-social a {

    color: rgba(255,255,255,0.65);

    text-decoration: none;

    font-size: 1.2rem;

    transition: 0.3s ease;
}

.footer-social a:hover {

    color: white;
}

.footer-line {

    width: 100%;

    max-width: 1100px;

    height: 1px;

    background: rgba(255,255,255,0.18);

    margin: 0 auto 1rem;
}

.footer-copy {

    color: rgba(255,255,255,0.75);

    font-size: 1rem;
}
