* {
    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-product-categories {
    background: #ffffff;
}

.comdemontajes-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comdemontajes-category-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.comdemontajes-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
    border-color: #3182ce;
}

.comdemontajes-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comdemontajes-category-icon i {
    font-size: 2rem;
    color: white;
}

.comdemontajes-category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comdemontajes-category-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.comdemontajes-category-list {
    list-style: none;
    text-align: left;
}

.comdemontajes-category-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.comdemontajes-category-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 600;
}

.comdemontajes-wood-products {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.comdemontajes-wood-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comdemontajes-wood-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comdemontajes-wood-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-wood-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comdemontajes-wood-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comdemontajes-wood-feature-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-wood-feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.comdemontajes-wood-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.comdemontajes-wood-feature-content p {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-construction-materials {
    background: #ffffff;
}

.comdemontajes-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comdemontajes-material-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-material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
    border-color: #3182ce;
}

.comdemontajes-material-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comdemontajes-material-icon i {
    font-size: 1.75rem;
    color: white;
}

.comdemontajes-material-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comdemontajes-material-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.comdemontajes-material-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.comdemontajes-spec-tag {
    background: rgba(49, 130, 206, 0.1);
    color: #3182ce;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.comdemontajes-product-specifications {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.comdemontajes-specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comdemontajes-specs-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comdemontajes-spec-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comdemontajes-spec-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-spec-icon i {
    font-size: 1.25rem;
    color: white;
}

.comdemontajes-spec-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.comdemontajes-spec-content p {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-specs-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comdemontajes-specs-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-quality-certifications {
    background: #ffffff;
}

.comdemontajes-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comdemontajes-certification-item {
    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-certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
    border-color: #3182ce;
}

.comdemontajes-certification-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-certification-icon i {
    font-size: 1.5rem;
    color: white;
}

.comdemontajes-certification-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comdemontajes-certification-item p {
    color: #4a5568;
    line-height: 1.6;
}

.comdemontajes-cta {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.comdemontajes-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.comdemontajes-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.comdemontajes-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.comdemontajes-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comdemontajes-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comdemontajes-btn-primary {
    background: white;
    color: #3182ce;
    border: 2px solid white;
}

.comdemontajes-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.comdemontajes-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.comdemontajes-btn-secondary:hover {
    background: white;
    color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.comdemontajes-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.comdemontajes-btn-arrow {
    transition: transform 0.3s ease;
}

.comdemontajes-btn:hover .comdemontajes-btn-arrow {
    transform: translateX(3px);
}

.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-categories-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-wood-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comdemontajes-materials-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-specs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comdemontajes-certifications-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .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;
    }

    .comdemontajes-cta-title {
        font-size: 2rem;
    }

    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;
    }
}