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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f1ec;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
}

.card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    margin-bottom: 15px;
}

.logo-title img {
    height: 48px;   /* ajusta tamaño aquí */
    width: auto;
    display: block;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.1;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    font-weight: normal;
}

.description {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F1EC;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    width: 160px;
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #d8d5ce;
}

.social-button i {
    font-size: 18px;
    color: #333;
}

/* Efectos específicos por red social */
.whatsapp:hover {
    background-color: #25d366;
    color: white;
}

.whatsapp:hover i {
    color: white;
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.instagram:hover i {
    color: white;
}

.facebook:hover {
    background-color: #1877f2;
    color: white;
}

.facebook:hover i {
    color: white;
}

.email:hover {
    background-color: #ea4335;
    color: white;
}

.email:hover i {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .left-section {
        align-items: center;
        margin-bottom: 30px;
    }
    
    .right-section {
        align-items: center;
        width: 100%;
    }
    
    .social-button {
        width: 200px;
    }
    
    .title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .social-button {
        width: 180px;
        padding: 10px 16px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
        font-size: 11px;
    }
}
