* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

body.privacy-notification-open {
    padding-top: 60px;
}

.comdemontajes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comdemontajes-section {
    padding: 5rem 0;
}

.comdemontajes-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comdemontajes-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comdemontajes-section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.comdemontajes-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.comdemontajes-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comdemontajes-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 280px;
    height: auto;
}

.comdemontajes-logo:hover {
    color: #3182ce;
    transform: translateY(-1px);
}

.comdemontajes-logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    color: inherit;
    white-space: nowrap;
}

.comdemontajes-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.comdemontajes-nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.comdemontajes-nav-link:hover,
.comdemontajes-nav-link.active {
    color: #3182ce;
}

.comdemontajes-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #3182ce;
    border-radius: 1px;
}

.comdemontajes-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.comdemontajes-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a202c;
    transition: all 0.3s ease;
}

.comdemontajes-mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.comdemontajes-mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.comdemontajes-mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.comdemontajes-mobile-nav-link:hover {
    color: #3182ce;
    background: rgba(49, 130, 206, 0.05);
    padding-left: 1rem;
}

.comdemontajes-mobile-nav-link.active {
    color: #3182ce !important;
    background: rgba(49, 130, 206, 0.15) !important;
    font-weight: 600 !important;
    padding-left: 1rem !important;
    border-left: 3px solid #3182ce !important;
}

.comdemontajes-mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3182ce;
    border-radius: 0 2px 2px 0;
}

.comdemontajes-mobile-nav-link:focus {
    outline: 2px solid rgba(49, 130, 206, 0.3);
    outline-offset: 2px;
}

.comdemontajes-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.comdemontajes-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    opacity: 0.05;
}

.comdemontajes-hero-overlay {
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.comdemontajes-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.comdemontajes-hero-text {
    max-width: 600px;
}

.comdemontajes-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.comdemontajes-hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.comdemontajes-hero-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comdemontajes-hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-history {
    background: #ffffff;
}

.comdemontajes-history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comdemontajes-history-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comdemontajes-history-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.comdemontajes-history-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3182ce;
    background: rgba(49, 130, 206, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
}

.comdemontajes-history-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.comdemontajes-history-description p {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-history-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comdemontajes-history-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-team {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.comdemontajes-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comdemontajes-team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comdemontajes-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.comdemontajes-team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3182ce;
}

.comdemontajes-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comdemontajes-team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.comdemontajes-team-position {
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 1rem;
}

.comdemontajes-team-description {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-values {
    background: #ffffff;
}

.comdemontajes-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comdemontajes-value-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.comdemontajes-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
    border-color: #3182ce;
}

.comdemontajes-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comdemontajes-value-icon i {
    font-size: 1.5rem;
    color: white;
}

.comdemontajes-value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comdemontajes-value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-certifications {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.comdemontajes-certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comdemontajes-certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comdemontajes-certification-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comdemontajes-certification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.comdemontajes-certification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comdemontajes-certification-icon i {
    font-size: 1.25rem;
    color: white;
}

.comdemontajes-certification-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.comdemontajes-certification-info p {
    color: #4a5568;
    font-size: 0.875rem;
}

.comdemontajes-certifications-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comdemontajes-certifications-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-vision {
    background: #ffffff;
}

.comdemontajes-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comdemontajes-vision-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comdemontajes-vision-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border-left: 4px solid #3182ce;
    transition: all 0.3s ease;
}

.comdemontajes-vision-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.2);
}

.comdemontajes-vision-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.comdemontajes-vision-item p {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-vision-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comdemontajes-vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 3rem 0 1rem;
}

.comdemontajes-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.comdemontajes-footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.comdemontajes-footer-links {
    list-style: none;
}

.comdemontajes-footer-links li {
    margin-bottom: 0.5rem;
}

.comdemontajes-footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comdemontajes-footer-links a:hover {
    color: white;
}

.comdemontajes-footer-contact p {
    color: #a0aec0;
    margin-bottom: 0.5rem;

    align-items: center;
    gap: 0.5rem;
}


.comdemontajes-footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

.comdemontajes-footer-logo {
    margin-bottom: 1rem;
}

.comdemontajes-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .comdemontajes-nav-menu {
        display: none;
    }

    .comdemontajes-mobile-menu-toggle {
        display: flex;
    }

    .comdemontajes-logo {
        max-width: 200px;
    }

    .comdemontajes-logo-text {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .comdemontajes-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .comdemontajes-hero-title {
        font-size: 2.5rem;
    }

    .comdemontajes-hero-subtitle {
        font-size: 1.125rem;
    }

    .comdemontajes-history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comdemontajes-history-item {
        flex-direction: column;
        text-align: center;
    }

    .comdemontajes-history-year {
        align-self: center;
    }

    .comdemontajes-team-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-values-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-certifications-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comdemontajes-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comdemontajes-section-title {
        font-size: 2rem;
    }

    .comdemontajes-container {
        padding: 0 1rem;
    }

    .comdemontajes-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .comdemontajes-container {
        padding: 0 1rem;
    }

    .comdemontajes-nav-container {
        padding: 1rem;
    }

    .comdemontajes-logo {
        max-width: 160px;
    }

    .comdemontajes-logo-text {
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .comdemontajes-hero-content {
        padding: 0 1rem;
    }

    .comdemontajes-hero-title {
        font-size: 2rem;
    }

    .comdemontajes-section {
        padding: 3rem 0;
    }

    .comdemontajes-section-title {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* Privacy Notification Bar */
.comdemontajes-privacy-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comdemontajes-privacy-notification.show {
    transform: translateY(0);
}

.comdemontajes-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.comdemontajes-privacy-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.comdemontajes-privacy-text i {
    color: #3182ce;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.comdemontajes-privacy-text span {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #e2e8f0;
}

.comdemontajes-privacy-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.comdemontajes-privacy-link {
    color: #3182ce;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.comdemontajes-privacy-link:hover {
    color: #63b3ed;
}

.comdemontajes-privacy-accept {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comdemontajes-privacy-accept:hover {
    background: linear-gradient(135deg, #2c5aa0, #2a4d7c);
    transform: translateY(-1px);
}

.comdemontajes-privacy-close {
    background: transparent;
    color: #a0aec0;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comdemontajes-privacy-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .comdemontajes-privacy-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .comdemontajes-privacy-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comdemontajes-privacy-actions {
        width: 100%;
        justify-content: center;
    }

    body.privacy-notification-open {
        padding-top: 120px;
    }
}