* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B6F47;
    --secondary-color: #B5956A;
    --accent-color: #25d366;
    --text-dark: #4A4237;
    --text-light: #8B7E6A;
    --background: #FEFDF8;
    --surface: #F7F5F0;
    --border: #E8E4DC;
    --shadow: 0 4px 6px -1px rgba(139, 111, 71, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(139, 111, 71, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #F7F5F0 0%, #E8E4DC 50%, #D4CFC4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    background: var(--background);
    padding: 1rem;
    display: none; /* Hidden by default, will show when logo.png is available */
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(139, 111, 71, 0.2);
}

.main-content {
    background: transparent;
    border-radius: 0;
    padding: 2rem 0;
    box-shadow: none;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2D1810;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.subtitle {
    font-size: 1.125rem;
    color: #3D2A1F;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}



.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2D1810;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.contact-link:hover {
    color: #C17A74;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2D1810;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.contact-actions {
    display: flex;
    gap: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-actions {
    opacity: 1;
}

.action-btn {
    background: rgba(193, 122, 116, 0.9);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(193, 122, 116, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn:hover {
    background: #C17A74;
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(193, 122, 116, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.call-btn {
    background: rgba(72, 187, 120, 0.9);
    box-shadow: 0 3px 8px rgba(72, 187, 120, 0.4);
}

.call-btn:hover {
    background: #48bb78;
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.email-btn {
    background: rgba(66, 153, 225, 0.9);
    box-shadow: 0 3px 8px rgba(66, 153, 225, 0.4);
}

.email-btn:hover {
    background: #4299e1;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.copy-btn {
    background: rgba(237, 137, 54, 0.9);
    box-shadow: 0 3px 8px rgba(237, 137, 54, 0.4);
}

.copy-btn:hover {
    background: #ed8936;
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.contact-item i {
    color: #C17A74;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 1.1rem;
    background: rgba(193, 122, 116, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    box-shadow: 0 2px 4px rgba(193, 122, 116, 0.2);
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #2D1810;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.social-link:hover {
    background: rgba(193, 122, 116, 0.9);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(193, 122, 116, 0.3);
}

.social-link i {
    font-size: 1.25rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(37, 211, 102, 0.9);
    color: var(--background);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:hover {
    background: rgba(18, 140, 126, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.25rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
    color: var(--background);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    filter: brightness(1.1);
}

.instagram-btn i {
    font-size: 1.25rem;
}

.footer {
    margin-top: 2rem;
    text-align: center;
    color: #2D1810;
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #FEFDF8;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8B6F47 0%, #A67C52 50%, #C17A74 100%);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    color: #FEFDF8;
    background: linear-gradient(135deg, #A67C52 0%, #C17A74 50%, #D4A574 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--background);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 900px) and (min-width: 769px) {
    .contact-item {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .contact-link {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .contact-link span {
        font-size: 1rem !important;
        font-weight: 500 !important;
    }
    
    .contact-actions {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 900px) {
    .contact-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .contact-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }
    
    .contact-link span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .contact-actions {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        opacity: 1;
        flex-shrink: 0;
    }
    
    .contact-item i {
        flex-shrink: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        margin-bottom: 1rem;
    }
    
    .main-content {
        padding: 1.5rem 0;
        margin: 1rem;
    }
    
    .content-wrapper {
        gap: 1.25rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    

    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-item {
        font-size: 1rem;
        padding: 0.625rem 0.75rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        min-height: 52px;
    }
    
    .contact-link {
        justify-content: flex-start;
        flex: 1;
        min-width: 0;
        gap: 0.5rem;
    }
    
    .contact-link span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .contact-actions {
        opacity: 1;
        justify-content: flex-end;
        flex-shrink: 0;
        gap: 0.375rem;
        display: flex;
        flex-direction: row;
    }
    
    .contact-item i {
        font-size: 0.95rem;
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex-shrink: 0;
        margin-right: 0.25rem;
    }
    
    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .footer {
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
        letter-spacing: 0.75px;
        min-width: 130px;
        border-radius: 20px;
    }
    
    .social-media {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.6);
    }
    
    .social-media {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .whatsapp-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .instagram-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn span, .instagram-btn span {
        font-size: 0.875rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 0.5rem;
    }
    
    .contact-item {
        padding: 0.5rem;
        font-size: 0.95rem;
        min-height: 48px;
        gap: 0.375rem;
    }
    
    .contact-link {
        gap: 0.375rem;
    }
    
    .contact-link span {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .contact-item i {
        width: 18px;
        height: 18px;
        min-width: 18px;
        font-size: 0.85rem;
        margin-right: 0.25rem;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .contact-actions {
        gap: 0.25rem;
    }
    
    .whatsapp-btn span, .instagram-btn span {
        font-size: 0.8rem;
    }
    
    .social-media {
        gap: 0.75rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #0f172a;
        --surface: #1e293b;
        --text-dark: #f1f5f9;
        --text-light: #94a3b8;
        --border: #334155;
    }
}

/* Animation for page load */
.content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}