:root {
    /* Colores principales - EXACTOS DEL LOGO */
    --nappe-navy: #1e3362;
    --nappe-navy-dark: #13243d;
    --nappe-navy-light: #2d4169;
    
    /* Colores de acento */
    --nappe-gold: #c9a961;
    --nappe-gold-hover: #b89850;
    
    /* Neutros */
    --nappe-gray-100: #f8f9fa;
    --nappe-gray-300: #dee2e6;
    --nappe-gray-600: #6c757d;
    --nappe-white: #ffffff;
    
    /* Estados */
    --success: #28a745;
    --error: #dc3545;
}

* {
    font-family: "Inter", sans-serif;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #001125;
}

.rotar135 {
    transform: rotate(135deg);
    font-size: 20px;
}

body {
    margin-top: 71px;
}

@media (min-width: 992px) {
    body {
        margin-top: 120px;
    }
}

h1, h2, h3, h4, h5 {
    font-family: "Playfair Display", sans-serif;
    font-weight: 700;
}

h4, .txt-4 {
    font-size: 20px;
    font-weight: 600;
}

@media (min-width: 992px) {
    h4, .txt-4 {
        font-size: 30px;
        font-weight: 600;
    }
}

h5, .txt-5 {
    font-size: 24px;
    font-weight: 600;
}

.text-5 {
    font-size: 20px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .text-5 {
        font-size: 24px;
    }
}

.text-white,
.text-white * {
    color: #fff !important;
}

.bg-azul1 {
    background-color: var(--nappe-navy-dark);
}

.bg-white {
    background-color: #fff;
}

.btn-primary {
    background: var(--nappe-navy);
    color: white;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

@media (min-width: 992px) {
    .btn-primary {
        font-size: 20px;
        width: auto;
    }
}

.btn-primary.borde {
    background-color: transparent;
    border: 1px solid white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--nappe-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.font-azul0 {
    color: var(--nappe-navy);
}

.font-azul1 {
    color: var(--nappe-navy);
}

.font-amarillo1 {
    color: #2c3e50;
}

.font-amarillo2 {
    color: var(--nappe-gold);
}

.font-grisc {
    color: #ddd;
}

.titulo {
    font-family: "Playfair Display", sans-serif;
    font-weight: 700 !important;
}

section {
    scroll-margin-top: 71px;
}

@media (min-width: 992px) {
    section#hero {
        scroll-margin-top: 120px;
    }
}

.transall {
    transition: all 0.3s ease-in-out;
}

.navbar {
    height: 71px;
    background-color: #fff !important;
    transition: height 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .navbar {
        height: 120px;
    }
    
    .navbar.scrolled {
        height: 71px;
    }
}

.navbar-brand img {
    height: 45px;
    transition: height 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .navbar-brand {
        padding: 0;
    }
    
    .navbar-brand img {
        height: 60px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 40px;
    }
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler .navbar-icon {
    border: 0;
    color: #2c3e50;
    font-size: 36px;
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none !important;
    border: none !important;
}

.navbar .nav-link {
    text-transform: uppercase;
    color: var(--nappe-navy);
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--nappe-gold) !important;
}

.navbar .nav-link.active {
    color: var(--nappe-gold) !important;
}

@media (min-width: 992px) {
    .navbar .nav-link {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

section {
    min-height: calc(100dvh - 71px);
}

@media (min-width: 992px) {
    section#hero {
        min-height: calc(100dvh - 120px);
    }
}

#hero {
    background-image: url('../img/nappe-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

#hero h1 {
    font-weight: 900;
}

.bg-trama {
    background-image: url('../img/nappe-tela.png');
    background-position: center;
    background-repeat: repeat;
}

.service .service-image img {
    width: 60px;
    margin-right: 30px;
}

@media (min-width: 992px) {
    .service .service-image img {
        width: 90px;
    }
}

/* ===== FORMULARIO ===== */
.form-floating input,
.form-floating textarea,
.form-floating select {
    border: 2px solid var(--nappe-gray-300);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--nappe-navy);
    transition: all 0.3s ease;
}

.form-floating label {
    color: var(--nappe-navy);
    font-size: 14px;
    font-weight: 500;
    opacity: 1 !important;
}

/* Inputs de texto */
.nappe-input {
    padding: 12px 16px;
    border-radius: 6px;
}

.nappe-input:focus {
    border-color: var(--nappe-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
    outline: none;
}

.nappe-input::placeholder {
    color: var(--nappe-gray-600);
    opacity: 0.6;
}

/* Select */
.nappe-select {
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23223357' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}

.nappe-select:focus {
    border-color: var(--nappe-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
    outline: none;
}

/* Textarea */
.nappe-textarea {
    padding: 12px 16px;
    border-radius: 6px;
    resize: vertical;
    min-height: 120px;
}

.nappe-textarea:focus {
    border-color: var(--nappe-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
    outline: none;
}

.nappe-textarea::placeholder {
    color: var(--nappe-gray-600);
    opacity: 0.6;
}

/* WhatsApp Button */
#whatsapp {
    position: fixed;
    z-index: 30;
    bottom: 75px;
    right: 15px;
}

#whatsapp .boton {
    background-color: #25D366;
    display: inline-block;
    padding: 15px;
    border-radius: 30px;
}

#whatsapp .boton:hover {
    background-color: #128c7e;
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 0px;
    right: 15px;
    padding: 18px 18px 11px 18px;
    background-color: var(--nappe-gold);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    display: none;
    z-index: 20;
}

#scroll-top:hover {
    background-color: var(--nappe-gold-hover);
}