* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-900: #7f1d1d;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-900: #881337;
    --slate-50: #f8fafc;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(to bottom right, var(--slate-50), #fef2f2);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fee2e2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--red-700), var(--rose-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.nav-desktop {
    display: none;
    gap: 1.5rem;
}

.nav-desktop a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--red-600);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--red-600);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid #fee2e2;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: #fef2f2;
    color: var(--red-600);
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .logo-text p {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 3rem 0 5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(220, 38, 38, 0.05), rgba(225, 29, 72, 0.05));
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.hero-title span {
    display: block;
}

.gradient-text {
    background: linear-gradient(to right, var(--red-700), var(--rose-600), #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.625;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--red-600), var(--rose-700));
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--white);
    color: var(--red-600);
    border: 2px solid var(--red-600);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #22c55e;
    color: var(--white);
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: var(--white);
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-instagram:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s;
}

.hero-image img:hover {
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-image img {
        height: 500px;
    }
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.categories-grid {
    display: grid;
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s;
}

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

.category-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(127, 29, 29, 0.7), rgba(127, 29, 29, 0.2), transparent);
}

.category-image h3 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.category-content {
    padding: 1.5rem;
}

.category-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.btn-small {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, var(--red-600), var(--rose-700));
    color: var(--white);
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-small:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-image {
        height: 256px;
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(220, 38, 38, 0.05), rgba(225, 29, 72, 0.05));
}

.contact-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

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

.contact-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--red-600), var(--rose-700));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--gray-600);
    word-break: break-word;
}

.contact-map {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .contact-map {
        height: 100%;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--red-900), var(--rose-900));
    color: var(--white);
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: #fee2e2;
    line-height: 1.625;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a {
    color: #fee2e2;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #fee2e2;
}

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

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

/* Category Page Styles */
.category-hero {
    background: linear-gradient(to right, rgba(220, 38, 38, 0.05), rgba(225, 29, 72, 0.05));
    padding: 3rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-600);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--red-700);
}

.category-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Subcategory Tabs */
.subcategory-tabs {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 2rem 0;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    color: var(--gray-700);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover {
    background: #fef2f2;
    color: var(--red-600);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.tab-btn.active {
    background: linear-gradient(to right, var(--red-600), var(--rose-700));
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Products Section */
.products {
    padding: 4rem 0;
}

.products h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.product-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-image {
        height: 224px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-hero h1 {
        font-size: 4rem;
    }
}

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

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(220, 38, 38, 0.05), rgba(225, 29, 72, 0.05));
}

.cta-box {
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, var(--red-600), var(--rose-700));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

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

.btn-white:hover {
    background: #fef2f2;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .cta-box {
        padding: 3rem;
    }
    
    .cta-box h2 {
        font-size: 2.5rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--red-600), var(--rose-700));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--red-700), #be123c);
}
/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
}

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

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--red-600), var(--rose-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--gray-700);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--red-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--red-700);
}

.contact-desc {
    font-size: 0.875rem !important;
    color: var(--gray-600) !important;
}

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

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

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--red-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Map Wrapper */
.contact-map-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-map-large {
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 0.5rem;
}

.map-info-item i {
    color: var(--red-600);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map-info-item strong {
    display: block;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.map-info-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

/* Quick Contact Section */
.quick-contact-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quick-contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-contact-section p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.quick-contact-buttons {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.quick-contact-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.25rem);
}

.quick-contact-btn i {
    font-size: 2.5rem;
}

.quick-contact-btn div {
    text-align: left;
}

.quick-contact-btn strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.quick-contact-btn span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 400;
}

.quick-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.quick-contact-btn.phone {
    background: linear-gradient(135deg, var(--red-600) 0%, var(--rose-700) 100%);
}

.quick-contact-btn.email {
    background: linear-gradient(135deg, #4285F4 0%, #0F9D58 100%);
}

.quick-contact-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
}

@media (min-width: 640px) {
    .quick-contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

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