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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 25px;
    }
}

/* Colors */
:root {
    --primary-color: #007BFF;
    --white: #FFFFFF;
    --light-gray: #F0F0F0;
    --medium-gray: #CCCCCC;
    --dark-gray: #666;
    --text-dark: #333;
    --success: #28a745;
    --shadow: rgba(0, 123, 255, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary i, .btn-secondary i, .btn-phone i {
    margin-right: 8px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    object-fit: contain;
    filter: brightness(1.1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: var(--light-gray);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 220px 0 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-top: 100px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text .hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    justify-content: center;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-phone,
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-hero-phone {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-hero-phone:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-hero-phone i {
    margin-right: 8px;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-hero-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    justify-self: end;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    font-size: 1rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

section:first-of-type {
    padding-top: 0;
}

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

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Guarantees Section */
.guarantees {
    background: var(--light-gray);
}

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

.guarantee-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Before/After Section */
.before-after {
    background: var(--white);
}

.gallery-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.gallery-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.before, .after {
    text-align: center;
}

.before h4, .after h4 {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
    margin: 0 0 10px 0;
    border-radius: 10px 10px 0 0;
}

.before img, .after img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: none; /* Hidden since we only have one slide */
    justify-content: space-between;
    pointer-events: none;
}

.nav-prev, .nav-next {
    background: rgba(0, 123, 255, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.gallery-dots {
    display: none; /* Hidden since we only have one slide */
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.testimonials-grid {
    display: none; /* Hidden - replaced by carousel */
}

/* Single Testimonial Card */
.testimonials-carousel .testimonial-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    max-width: 600px;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

/* Legacy testimonial-card styles for other uses */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Testimonials Navigation */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.testimonials-prev, .testimonials-next {
    background: rgba(0, 123, 255, 0.9);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.testimonials-prev:hover, .testimonials-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.testimonials-prev {
    left: 10px;
}

.testimonials-next {
    right: 10px;
}

/* Testimonials Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 5px;
    min-width: 25px;
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-group.checkbox label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.footer-phone, .footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover, .footer-email:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-copyright p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

/* Desktop only - remove flex */
@media (min-width: 1025px) {
    .hero-features {
        display: block;
    }
    
    .feature-item {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        color: var(--dark-gray);
        font-weight: 500;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .hero-cta {
        display: inline-flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Navigation responsive for tablets */
    .nav-menu {
        gap: 1.5rem;
    }
    
    .header-cta {
        gap: 0.8rem;
    }
    
    .btn-phone {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    /* Hide CTA buttons on smaller tablets */
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow-dark);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Header Mobile */
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow-dark);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.2rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: var(--light-gray);
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Mobile */
    .header {
        position: fixed;
        z-index: 1001;
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
        margin-top: 100px;
    }
    
    .hero-text .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-image {
        order: 2;
        max-width: 100%;
        justify-self: center;
    }
    
    .hero-image img {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .hero-badge {
        top: -10px;
        right: -10px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.8rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .hero-features {
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Guarantees Mobile */
    .guarantees-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .guarantee-card {
        padding: 2rem 1.5rem;
    }
    
    /* Before/After Mobile */
    .comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-carousel {
        margin: 0 20px;
    }
    
    .testimonials-carousel .testimonial-card {
        min-height: 250px;
        padding: 2.5rem 2rem;
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Mobile */
    .contact-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .contact-badges {
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Buttons Mobile */
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 120px 0 50px;
        margin-top: 0;
    }
    
    .hero-content {
        gap: 2.5rem;
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-top: 100px;
    }
    
    .hero-text .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-cta {
        gap: 0.8rem;
    }
    
    .hero-image img {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .hero-badge {
        top: -8px;
        right: -8px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.4;
    }
    
    .hero-cta {
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta a {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card, .guarantee-card, .testimonial-card {
        padding: 1.8rem 1.2rem;
    }
    
    .contact-content {
        padding: 0 10px;
    }
    
    /* Testimonials Mobile Small */
    .testimonials-carousel {
        margin: 0 15px;
    }
    
    .testimonials-carousel .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease forwards;
}

/* Visual improvements for cards */
.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 0;
    flex-grow: 1;
}

.guarantee-card h3, .testimonial-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Better spacing for contact section */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus, input:focus, textarea:focus, a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header, .whatsapp-btn, .scroll-top {
        display: none;
    }
    
    .hero {
        padding-top: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}