/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
}

body.privacy-notification-open {
    padding-top: 60px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

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

/* Navigation */
.comdemontajes-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.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 {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.comdemontajes-nav-link:hover,
.comdemontajes-nav-link.active {
    color: #3182ce;
}

.comdemontajes-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3182ce;
    transition: width 0.3s ease;
}

.comdemontajes-nav-link:hover::after,
.comdemontajes-nav-link.active::after {
    width: 100%;
}

.comdemontajes-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1001;
}

.comdemontajes-mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #4a5568;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
}

.comdemontajes-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.3s ease;
    position: relative;
}

.comdemontajes-mobile-nav-link:last-child {
    border-bottom: none;
}

.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;
}

/* Hero Section */
.comdemontajes-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    overflow: hidden;
}

.comdemontajes-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.comdemontajes-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(49, 130, 206, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(49, 130, 206, 0.05) 0%, transparent 50%);
}

.comdemontajes-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comdemontajes-hero-text {
    color: #1a202c;
}

.comdemontajes-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid rgba(49, 130, 206, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3182ce;
}

.comdemontajes-badge-icon {
    font-size: 1rem;
}

.comdemontajes-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.comdemontajes-title-accent {
    color: #3182ce;
}

.comdemontajes-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #4a5568;
}

.comdemontajes-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.comdemontajes-hero-visual {
    position: relative;
}

.comdemontajes-hero-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.comdemontajes-hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.comdemontajes-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.comdemontajes-hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

.comdemontajes-stat-item {
    text-align: center;
}

.comdemontajes-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: center;
}

.comdemontajes-stat-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.comdemontajes-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.comdemontajes-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comdemontajes-btn-primary {
    background: #3182ce;
    color: white;
    box-shadow: 0 4px 14px rgba(49, 130, 206, 0.3);
}

.comdemontajes-btn-primary:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

.comdemontajes-btn-secondary {
    background: transparent;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.comdemontajes-btn-secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.comdemontajes-btn-arrow {
    transition: transform 0.3s ease;
}

.comdemontajes-btn:hover .comdemontajes-btn-arrow {
    transform: translateX(4px);
}

.comdemontajes-btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Sections */
.comdemontajes-section {
    padding: 6rem 0;
}

.comdemontajes-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comdemontajes-section-title {
    color: #1a202c;
    margin-bottom: 1rem;
}

.comdemontajes-section-subtitle {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Features Section */
.comdemontajes-features {
    background: white;
}

.comdemontajes-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comdemontajes-feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.comdemontajes-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3182ce;
}

.comdemontajes-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 12px;
}

.comdemontajes-feature-icon i {
    font-size: 1.5rem;
    color: #3182ce;
}

.comdemontajes-feature-title {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.comdemontajes-feature-description {
    color: #4a5568;
    line-height: 1.6;
}

/* Services Section */
.comdemontajes-services {
    background: #f7fafc;
}

.comdemontajes-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comdemontajes-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.comdemontajes-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comdemontajes-service-image {
    height: 200px;
    overflow: hidden;
}

.comdemontajes-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comdemontajes-service-card:hover .comdemontajes-service-image img {
    transform: scale(1.05);
}

.comdemontajes-service-content {
    padding: 1.5rem;
}

.comdemontajes-service-title {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.comdemontajes-service-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comdemontajes-service-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.comdemontajes-service-link:hover {
    color: #2c5aa0;
    transform: translateX(4px);
}

.comdemontajes-link-arrow {
    transition: transform 0.3s ease;
}

.comdemontajes-service-link:hover .comdemontajes-link-arrow {
    transform: translateX(4px);
}

/* Stats Section */
.comdemontajes-stats {
    background: #1a202c;
    color: white;
}

.comdemontajes-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.comdemontajes-stat-card {
    text-align: center;
    padding: 2rem;
}

.comdemontajes-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3182ce;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.comdemontajes-stat-unit {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3182ce;
    opacity: 0.8;
}

.comdemontajes-stat-label {
    color: #a0aec0;
    font-weight: 500;
}

/* Testimonials Section */
.comdemontajes-testimonials {
    background: white;
}

.comdemontajes-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comdemontajes-testimonial-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.comdemontajes-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comdemontajes-testimonial-content {
    margin-bottom: 1.5rem;
}

.comdemontajes-testimonial-content p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.comdemontajes-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comdemontajes-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comdemontajes-testimonial-avatar i {
    font-size: 1.2rem;
    color: white;
}

.comdemontajes-testimonial-info h4 {
    color: #1a202c;
    margin: 0;
    font-size: 1rem;
}

.comdemontajes-testimonial-info span {
    color: #4a5568;
    font-size: 0.875rem;
}

/* CTA Section */
.comdemontajes-cta {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
}

.comdemontajes-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.comdemontajes-cta-title {
    color: white;
    margin-bottom: 1rem;
}

.comdemontajes-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.comdemontajes-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comdemontajes-cta .comdemontajes-btn-primary {
    background: white;
    color: #3182ce;
}

.comdemontajes-cta .comdemontajes-btn-primary:hover {
    background: #f7fafc;
    color: #2c5aa0;
}

.comdemontajes-cta .comdemontajes-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.comdemontajes-cta .comdemontajes-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.comdemontajes-footer {
    background: #1a202c;
    color: white;
    padding: 4rem 0 2rem;
}

.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-logo {
    margin-bottom: 1rem;
}

.comdemontajes-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.comdemontajes-footer-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.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;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Design */
@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-hero-actions {
        justify-content: center;
    }

    .comdemontajes-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comdemontajes-features-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-services-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .comdemontajes-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

@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-stats-grid {
        grid-template-columns: 1fr;
    }

    .comdemontajes-feature-card,
    .comdemontajes-testimonial-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* 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;
    }
}

.mt-4 {
    margin-top: 2rem;
}