
* {
    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: #2E2E2E;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-rose: #E38FA3;
    --secondary-green: #A3C9A8;
    --background-light: #F9F9F9;
    --text-primary: #2E2E2E;
    --accent-gold: #D4AF37;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.text-accent {
    color: var(--primary-rose);
}

.btn-primary {
    background-color: var(--primary-rose);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--primary-rose);
    border: 2px solid #f8b6c8;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background-color: #fdf2f4;
}

.btn-gradient {
    background: linear-gradient(135deg, #f8b6c8, var(--primary-rose));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-rose), #d17b94);
    transform: scale(1.05);
}

.btn-whatsapp {
    background: transparent;
    color: #16a34a;
    border: 2px solid #4ade80;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: #f0fdf4;
}

.btn-offer {
    background: linear-gradient(135deg, var(--primary-rose), #d17b94);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
    font-size: 1.125rem;
    box-shadow: 0 10px 25px rgba(227, 143, 163, 0.3);
}

.btn-offer:hover {
    background: linear-gradient(135deg, #d17b94, #c06e87);
    transform: scale(1.05);
}

.btn-form {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-emergency {
    background: white;
    color: var(--primary-rose);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background-color: var(--gray-100);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f8b6c8, var(--primary-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

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

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav button {
    background: none;
    border: none;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.desktop-nav button:hover {
    color: var(--primary-rose);
}

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

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50), white);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blob 7s infinite;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: #f8b6c8;
}

.blob-2 {
    top: 10rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: #bbf7d0;
    animation-delay: 2s;
}

.blob-3 {
    bottom: -5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background-color: #fde68a;
    animation-delay: 4s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr; 
    }
}


.hero-text {
    z-index: 10;
}


.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.title-dark {
    color: var(--text-primary);
}

.title-accent {
    color: var(--primary-rose);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 32rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.hero-image {
    position: relative;
    z-index: 10;
}

.hero-img-wrapper {
    position: relative;
}

.hero-img-wrapper img {
    width: 100%;
    max-width: 500px; 
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.floating-card {
    position: absolute;             
    bottom: 1rem;                   
    left: 1rem;                     
    max-width: 12rem;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(4px);             
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
    z-index: 5;        
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-icon {
    width: 3rem;
    height: 3rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.floating-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.bg-circle-1 {
    top: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background-color: #f8b6c8;
}

.bg-circle-2 {
    bottom: -4rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: #bbf7d0;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, var(--gray-50), white);
    border: 1px solid var(--gray-100);
    transition: all 0.5s ease;
}

.benefit-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fdf2f4, #f8b6c8);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-rose);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: var(--primary-rose);
}

.benefit-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
}

.satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fdf2f4, #dcfce7);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
}

.satisfaction-icon {
    font-size: 1.5rem;
}

.satisfaction-text {
    color: var(--gray-700);
    font-weight: 500;
}

.services {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px rgba(227, 143, 163, 0.25);
    transform: translateY(-0.75rem);
}

.service-card-offset {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .service-card-offset {
        margin-top: 3rem;
    }
}

.service-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

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

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

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.service-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-rose);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-rose);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.service-rating span {
    font-size: 1rem;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    max-width: 42rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.special-offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf2f4, white, #f0fdf4);
    position: relative;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.offer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite;
}

.offer-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: #f8b6c8;
}

.offer-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: #bbf7d0;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.offer-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fdf2f4, #f8b6c8);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.offer-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #be185d;
}

.offer-badge span {
    color: #be185d;
    font-weight: 600;
}

.offer-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gray-100);
}

.offer-card-content {
    display: grid;
    gap: 0;
}

@media (min-width: 1024px) {
    .offer-card-content {
        grid-template-columns: 1fr 1fr;
    }
}

.offer-details {
    padding: 2rem;
}

@media (min-width: 1024px) {
    .offer-details {
        padding: 3rem;
    }
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-rose), #d17b94);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(227, 143, 163, 0.4);
    margin-bottom: 2rem;
}

.offer-list {
    margin-bottom: 2rem;
}

.offer-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.offer-items {
    list-style: none;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 0.875rem;
    font-weight: 700;
}

.offer-item span {
    color: var(--gray-700);
}

.urgency-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fefce8;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.urgency-box svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ca8a04;
}

.urgency-label {
    color: #a16207;
    font-weight: 600;
}

.urgency-date {
    color: #ca8a04;
}

.offer-image {
    position: relative;
    height: 16rem;
}

@media (min-width: 1024px) {
    .offer-image {
        height: auto;
    }
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 143, 163, 0.2), transparent);
}

.offer-floating-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer-floating-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50), white);
}

.contact-content {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-form-card {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: none;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #fdf2f4, #f0fdf4);
    padding: 2rem;
}

.form-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-title svg {
    color: var(--primary-rose);
}

.form-content {
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-input, .form-select {
    height: 3rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 0 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: white;
}


.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #f8b6c8;
    box-shadow: 0 0 0 3px rgba(227, 143, 163, 0.1);
}

.form-divider {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--gray-600);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-cards {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.info-card .info-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-icon {
    background: #fdf2f4;
}

.address-icon svg {
    color: var(--primary-rose);
}

.phone-icon {
    background: #f0fdf4;
}

.phone-icon svg {
    color: var(--secondary-green);
}

.email-icon {
    background: #fefce8;
}

.email-icon svg {
    color: var(--accent-gold);
}

.hours-icon {
    background: #dbeafe;
}

.hours-icon svg {
    color: #2563eb;
}

.info-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-text, .info-text a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-rose);
}

.hours-list {
    font-size: 0.875rem;
}

.hours-list p {
    margin: 0.25rem 0;
}

.emergency-card {
    background: linear-gradient(135deg, var(--primary-rose), #d17b94);
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.emergency-content {
    padding: 1.5rem;
    text-align: center;
}

.emergency-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-text {
    color: #f8b6c8;
    margin-bottom: 1rem;
}

.footer {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    color: white;
}

.footer-main {
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}


.footer {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: center;
    }
}

.copyright {
    text-align: center;
}

@media (min-width: 768px) {
    .copyright {
        text-align: left;
    }
}

.copyright-text {
    color: var(--gray-400);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-offset {
        margin-top: 0;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-rose);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d17b94;
}

button:focus, 
input:focus, 
select:focus {
    outline: 2px solid var(--primary-rose);
    outline-offset: 2px;
}

@media print {
    .header {
        display: none;
    }
    
    .hero {
        padding-top: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}