.contacto-hero {
    position: relative;
    height: 30vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066A1 50%, var(--accent-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contacto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(109, 179, 63, 0.15) 0%, transparent 50%);
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.team-section-wrap {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.team-section-wrap::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,59,92,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.team-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 56px;
}

.team-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange, #C8501A), #e8601f);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.90rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.team-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--primary-blue, #003B5C);
    line-height: 1.1;
    margin-bottom: 14px;
}

.team-title span {
    color: var(--accent-orange, #C8501A);
}

.team-subtitle {
    color: #607080;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    perspective: 1400px;
}

.vendor-card {
    position: relative;
    cursor: pointer;
    border-radius: 28px;
    box-sizing: border-box;
    min-width: 0;
}

.card-inner {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 30px 12px 24px;
    text-align: center;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 10px 30px rgba(0,59,92,0.08),
        0 0 0 1px rgba(0,59,92,0.06);
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    will-change: transform;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.card-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: #FFFF;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vendor-card:hover .card-inner::before,
.vendor-card.active .card-inner::before {
    opacity: 1;
}

.vendor-card:hover .card-inner {
    box-shadow:
        0 20px 60px rgba(0,59,92,0.16),
        0 8px 24px rgba(0,59,92,0.12);
}

.vendor-card.active .card-inner {
    background: #ffffff;
    box-shadow:
        0 24px 64px rgba(0,59,92,0.30),
        0 8px 24px rgba(0,0,0,0.15);
}

.vendor-card.active .vendor-name {
    color: #1a1a1a;
}

.vendor-card.active .vendor-role {
    color: #C8501A;
}

.vendor-card.active .vendor-specialty {
    color: #555555;
}

.vendor-card.active .click-hint {
    background: rgba(0,59,92,0.08);
    color: #003B5C;
}

.vendor-card.active .vendor-panel-inner {
    border-top-color: rgba(0,0,0,0.10);
}

.avatar-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
}

.avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #C8501A, #C8501A 25%, #003B5C 50%, #003B5C 75%, #C8501A);
    animation: avatarSpin 5s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vendor-card:hover .avatar-ring,
.vendor-card.active .avatar-ring {
    opacity: 1;
}

@keyframes avatarSpin {
    to { transform: rotate(360deg); }
}

.avatar-bg {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: white;
    z-index: 1;
}

.vendor-avatar {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    user-select: none;
    overflow: hidden;
}

.vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22c55e;
    border: 3px solid white;
    z-index: 3;
    animation: statusPulse 2.2s infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.vendor-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-blue, #003B5C);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.vendor-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-orange, #C8501A);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.vendor-specialty {
    font-size: 0.88rem;
    color: #7a8fa0;
    margin-bottom: 18px;
    line-height: 1.5;
    min-height: 36px;
    transition: color 0.3s ease;
}

.click-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-blue, #003B5C);
    background: rgba(0,59,92,0.07);
    padding: 5px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.vendor-card:hover .click-hint {
    background: linear-gradient(135deg, #C8501A, #e8601f);
    color: white;
}

.click-hint i {
    font-size: 0.65rem;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.vendor-card.active .click-hint i {
    transform: rotate(180deg);
}

.vendor-info-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.35s ease,
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.vendor-card.active .vendor-info-panel {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.vendor-panel-inner {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,59,92,0.10);
}

.vendor-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vendor-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.vendor-btn-wa {
    background: #f0faf4;
    color: #0a6b38;
    border: 1.5px solid #b7e4c7;
}

.vendor-btn-wa:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.25);
}

.vendor-btn-email {
    background: #fff6f2;
    color: #7a2e0a;
    border: 1.5px solid #f5c6b0;
}

.vendor-btn-email:hover {
    background: #C8501A;
    color: white;
    border-color: #C8501A;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200,80,26,0.25);
}

.vendor-btn i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vendor-btn-text {
    text-align: left;
    line-height: 1.3;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.vendor-btn-label {
    display: block;
    font-size: 0.68rem;
    opacity: 0.75;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vendor-btn-value {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
}

/* Email siempre en una sola línea, achicando fuente si es necesario */
.vendor-btn-email .vendor-btn-value {
    font-size: clamp(0.55rem, 0.9vw, 0.68rem);
    letter-spacing: -0.5px;
}

.contact-main-section {
    padding: 100px 0;
    background: white;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-column {
    position: relative;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: var(--accent-orange);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(237, 125, 49, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 30px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
}

.link-politica {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-orange), #d67d31);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 125, 49, 0.4);
    background: linear-gradient(135deg, #d67d31, var(--accent-orange));
}

.btn-submit i {
    font-size: 1.3rem;
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    background: linear-gradient(135deg, var(--accent-green), #5a9a3f);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(109, 179, 63, 0.3);
    text-align: center;
    animation: slideIn 0.6s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-column {
    position: sticky;
    top: 100px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-blue);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-blue), #0066A1);
    color: white;
    border-left: 5px solid var(--accent-orange);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #d67d31);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-card .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.highlight-card .info-content h4 {
    color: white;
}

.info-content p {
    color: #666;
    line-height: 1.8;
}

.highlight-card .info-content p {
    color: rgba(255, 255, 255, 0.9);
}

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-cta:hover {
    gap: 12px;
}

.btn-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp-inline:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.05);
}

.other-contacts-section {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.section-title-center {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
}

.other-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.other-contact-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.other-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.other-contact-card i {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.other-contact-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.other-contact-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--accent-orange);
    transform: scale(1.05);
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i:first-child {
    font-size: 1.5rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.faq-question h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    flex: 1;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 75px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

body.modal-open {
    overflow: hidden;
}

.catalog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.78);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.catalog-modal-content {
    position: relative;
    width: 100%;
    max-width: 860px;
    max-height: 88vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    animation: cModalIn 0.28s ease;
}

@keyframes cModalIn {
    from { opacity: 0; transform: translateY(-24px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.catalog-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #1a3a52;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
}

.catalog-modal-close:hover {
    background: #FF6B35;
}

.catalog-modal-header {
    background: linear-gradient(160deg, #003B5C 0%, #0a5fa5 100%);
    text-align: center;
    padding: 38px 30px 30px;
    border-radius: 14px 14px 0 0;
}

.catalog-modal-header > i {
    font-size: 3rem;
    color: #FF6B35;
    display: block;
    margin-bottom: 10px;
}

.catalog-modal-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.15;
}

.catalog-modal-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.catalog-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 28px 28px 18px;
    background: #edf0f4;
}

.catalog-option {
    background: #ffffff;
    border-radius: 10px;
    padding: 26px 18px 22px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-option:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

.catalog-option-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(145deg, #FF6B35, #e0521c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.25s;
}

.catalog-option:hover .catalog-option-icon {
    transform: scale(1.07);
}

.catalog-option-icon-pvc {
    background: linear-gradient(145deg, #003B5C, #0a5fa5);
}

.catalog-option-icon-succion {
    background: linear-gradient(145deg, #2f9e20, #53c442);
}

.catalog-option-icon i {
    font-size: 2rem;
    color: #fff;
}

.catalog-option h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #003B5C;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.catalog-option-subtitle {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 14px;
    font-weight: 500;
}

.catalog-option-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
}

.catalog-option-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 4px 0;
    font-size: 0.84rem;
    color: #555;
    line-height: 1.4;
}

.catalog-option-list li i {
    color: #FF6B35;
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-catalog-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: #FF6B35;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.btn-catalog-download:hover {
    background: #e05520;
    transform: translateY(-2px);
}

.btn-catalog-download i {
    font-size: 0.95rem;
}

.catalog-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px 20px;
    background: #edf0f4;
    border-radius: 0 0 14px 14px;
}

.catalog-modal-footer i {
    font-size: 1rem;
    color: #FF6B35;
    flex-shrink: 0;
}

.catalog-modal-footer p {
    font-size: 0.88rem;
    color: #555;
    margin: 0;
}

.catalog-modal-footer a {
    color: #003B5C;
    font-weight: 700;
    text-decoration: none;
}

.catalog-modal-footer a:hover {
    color: #FF6B35;
    text-decoration: underline;
}

.copy-notification {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f172a;
    color: white;
    padding: 14px 24px 14px 18px;
    border-radius: 16px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 280px;
    max-width: 90vw;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-notification i {
    font-size: 1.6rem;
    color: #22c55e;
    flex-shrink: 0;
}

.copy-notif-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.copy-notif-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.3px;
}

.copy-notif-email {
    font-size: 0.82rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .team-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .catalog-modal-grid {
        grid-template-columns: 1fr;
        padding: 20px 18px 12px;
    }
    .catalog-modal-header {
        padding: 30px 20px 22px;
    }
    .catalog-modal-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .catalog-modal-content {
        border-radius: 10px;
    }
    .catalog-modal-header {
        padding: 24px 16px 18px;
    }
    .catalog-modal-header h2 {
        font-size: 1.5rem;
    }
    .catalog-modal-header > i {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .map-column {
        position: static;
    }
    .other-contacts-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 30px;
    }
    .contact-form {
        padding: 30px 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .section-title-center {
        font-size: 2.2rem;
    }
	.email-copyable {
    flex-direction: column;
    gap: 8px;
	}
	.email-copyable .contact-value {
    font-size: 0.6rem;
    word-break: break-all;
}
}

/* ===== FIX EMAIL MÓVIL ===== */
@media (max-width: 480px) {
    .card-inner {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .vendor-btn {
        padding: 8px 8px !important;
        gap: 6px !important;
    }
    .vendor-btn i {
        font-size: 0.95rem !important;
    }
}
.btn-copy-icon { display: none !important; }